Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Installing Qt "Network error while downloading "
Forum Updated to NodeBB v4.3 + New Features

Installing Qt "Network error while downloading "

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
11 Posts 6 Posters 16.5k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • SGaistS Offline
    SGaistS Offline
    SGaist
    Lifetime Qt Champion
    wrote on last edited by
    #2

    Hi and welcome to devnet,

    If you only want Qt Creator, then you can have it as standalone download.

    Otherwise, are you on a network that has time constraints ? Or maybe you are hitting a faulty mirror.

    Interested in AI ? www.idiap.ch
    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

    1 Reply Last reply
    0
    • R Offline
      R Offline
      Rikardo 0
      wrote on last edited by
      #3

      Where can i find the standalone versio?

      1 Reply Last reply
      0
      • SGaistS Offline
        SGaistS Offline
        SGaist
        Lifetime Qt Champion
        wrote on last edited by
        #4

        On the same page you downloaded Qt from.

        Or here in the officia releases folder.

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        1 Reply Last reply
        1
        • M.O.HM Offline
          M.O.HM Offline
          M.O.H
          wrote on last edited by
          #5

          The same problem I have since a while with various versions ( always the newest versions), with bold internet connections.
          Please fix this annoying issue! Actually it worked with standolone offline installer.
          Regards

          jsulmJ 1 Reply Last reply
          0
          • M.O.HM M.O.H

            The same problem I have since a while with various versions ( always the newest versions), with bold internet connections.
            Please fix this annoying issue! Actually it worked with standolone offline installer.
            Regards

            jsulmJ Offline
            jsulmJ Offline
            jsulm
            Lifetime Qt Champion
            wrote on last edited by
            #6

            @M.O.H There is nothing to fix in the installer. The problem is that some mirrors can be slow/offline.
            You can use this tool to select another mirror: https://github.com/JKSH/QtSdkRepoChooser

            https://forum.qt.io/topic/113070/qt-code-of-conduct

            O S 2 Replies Last reply
            1
            • jsulmJ jsulm

              @M.O.H There is nothing to fix in the installer. The problem is that some mirrors can be slow/offline.
              You can use this tool to select another mirror: https://github.com/JKSH/QtSdkRepoChooser

              O Offline
              O Offline
              orak
              wrote on last edited by orak
              #7

              I've tried it on 3 different days on different times (evening, morning, work day, weekend) and every time I've got a network error.
              So I think there is something to fix in the installer eg use another timeout, set the timeout by the user, or provide a resume button.
              just a suggestion - ... ok, I will see if I find the offline version, on my first look I don't see it, but this is probably my problem :-)

              Ok, I found it - small link at the bottom of the page

              1 Reply Last reply
              1
              • jsulmJ jsulm

                @M.O.H There is nothing to fix in the installer. The problem is that some mirrors can be slow/offline.
                You can use this tool to select another mirror: https://github.com/JKSH/QtSdkRepoChooser

                S Offline
                S Offline
                Sunil kumar verma
                wrote on last edited by
                #8

                @jsulm
                timer value not match with stop watch after 3000 x axis.
                help me how to resolve the matter.
                import QtQuick 2.15
                import QtQuick.Window 2.15
                import QtCharts 2.3
                Window {
                width: 1000
                height: 480
                visible: true
                title: qsTr("Hello World")
                property int xx: 0
                property int yy: 0
                property int zz: 0
                property real aa: 00
                property real bb: 20
                //property int point11: 0

                Rectangle {
                    width: 1000
                    height: 300
                
                    ChartView {
                        id: chart
                        anchors.fill: parent
                
                        // Define the chart axes
                        ValueAxis {
                            id: valueAxis
                            min: 0
                            max: 10
                            titleText: "ValueY"
                        }
                        ValueAxis {
                            id: valueAxisX
                            min: 0
                            max: 1000
                            tickCount: 11
                            titleText: "ValueX"
                        }
                
                        LineSeries {
                            id: series
                            axisX: valueAxisX
                            axisY: valueAxis
                            name: "Series"
                        }
                        Timer {
                            id: timer
                            interval: 10
                            running: true
                            repeat: true
                            property int amountOfData: 0
                            onTriggered: {
                
                                 aa++
                                 bb = Math.random() * 10;
                                console.log(aa)
                

                // series.append(aa,bb)
                if(amountOfData>valueAxisX.max)
                {
                valueAxisX.max++
                valueAxisX.min++
                }
                else
                {
                amountOfData++
                }

                            }
                        }
                    }
                }
                

                }

                SGaistS 1 Reply Last reply
                0
                • S Sunil kumar verma

                  @jsulm
                  timer value not match with stop watch after 3000 x axis.
                  help me how to resolve the matter.
                  import QtQuick 2.15
                  import QtQuick.Window 2.15
                  import QtCharts 2.3
                  Window {
                  width: 1000
                  height: 480
                  visible: true
                  title: qsTr("Hello World")
                  property int xx: 0
                  property int yy: 0
                  property int zz: 0
                  property real aa: 00
                  property real bb: 20
                  //property int point11: 0

                  Rectangle {
                      width: 1000
                      height: 300
                  
                      ChartView {
                          id: chart
                          anchors.fill: parent
                  
                          // Define the chart axes
                          ValueAxis {
                              id: valueAxis
                              min: 0
                              max: 10
                              titleText: "ValueY"
                          }
                          ValueAxis {
                              id: valueAxisX
                              min: 0
                              max: 1000
                              tickCount: 11
                              titleText: "ValueX"
                          }
                  
                          LineSeries {
                              id: series
                              axisX: valueAxisX
                              axisY: valueAxis
                              name: "Series"
                          }
                          Timer {
                              id: timer
                              interval: 10
                              running: true
                              repeat: true
                              property int amountOfData: 0
                              onTriggered: {
                  
                                   aa++
                                   bb = Math.random() * 10;
                                  console.log(aa)
                  

                  // series.append(aa,bb)
                  if(amountOfData>valueAxisX.max)
                  {
                  valueAxisX.max++
                  valueAxisX.min++
                  }
                  else
                  {
                  amountOfData++
                  }

                              }
                          }
                      }
                  }
                  

                  }

                  SGaistS Offline
                  SGaistS Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on last edited by
                  #9

                  @Sunil-kumar-verma please don't highjack threads with unrelated issues.

                  Interested in AI ? www.idiap.ch
                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                  S 1 Reply Last reply
                  1
                  • SGaistS SGaist

                    @Sunil-kumar-verma please don't highjack threads with unrelated issues.

                    S Offline
                    S Offline
                    Sunil kumar verma
                    wrote on last edited by
                    #10

                    @SGaist
                    if u have any idea then tell me how to resolve the problem!

                    jsulmJ 1 Reply Last reply
                    0
                    • S Sunil kumar verma

                      @SGaist
                      if u have any idea then tell me how to resolve the problem!

                      jsulmJ Offline
                      jsulmJ Offline
                      jsulm
                      Lifetime Qt Champion
                      wrote on last edited by
                      #11

                      @Sunil-kumar-verma Please post your question in your own thread! Your problem has absolutely nothing to do with this thread!

                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                      1 Reply Last reply
                      1

                      • Login

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Users
                      • Groups
                      • Search
                      • Get Qt Extensions
                      • Unsolved