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. Slow downloads with the online installer? Try this tool
Forum Updated to NodeBB v4.3 + New Features

Slow downloads with the online installer? Try this tool

Scheduled Pinned Locked Moved Installation and Deployment
26 Posts 12 Posters 39.0k Views 2 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.
  • JKSHJ JKSH

    @Eduardo12l said in Slow downloads with the online installer? Try this tool:

    @JKSH I cannot find the old download page

    Hi @Eduardo12l,

    It looks like I need to update steps #1 and #2 in the documentation.

    Here's a quick version:

    1. Go to http://download.qt.io/official_releases/qt/5.10/5.10.0/

    2. Choose a random file and click "Details" under "Metadata". At this stage, it doesn't matter which file you choose; we simply want to check the servers' download speeds.

    (Steps #3 onwards are unchanged)

    . PS: Is it useful only for linux?

    No, it works for Windows and macOS too. The screenshots just used Linux as an example.

    E Offline
    E Offline
    Eduardo12l
    wrote on last edited by Eduardo12l
    #14

    @JKSH it failed, the installation stops anyway. Or maybe i dont understand what you are trying to say in step 5 when says "select"

    JKSHJ 1 Reply Last reply
    0
    • E Eduardo12l

      @JKSH it failed, the installation stops anyway. Or maybe i dont understand what you are trying to say in step 5 when says "select"

      JKSHJ Offline
      JKSHJ Offline
      JKSH
      Moderators
      wrote on last edited by
      #15

      @Eduardo12l said in Slow downloads with the online installer? Try this tool:

      @JKSH it failed, the installation stops anyway. Or maybe i dont understand what you are trying to say in step 5 when says "select"

      Did you get a good, consistent download speed? At what stage does the installation stop?

      In step #5, "select" means choose a mirror from the drop-down menu. For best results, choose a mirror which gave you a consistently high download speed in step #3.

      There is no guarantee that the first mirror that you try will work, so try a different one.

      If you still don't have any luck, try installing Qt via the offline installer instead from http://download.qt.io/official_releases/qt/5.10/5.10.0/ (If you're on Windows, get qt-opensource-windows-x86-5.10.0.exe)

      Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

      1 Reply Last reply
      1
      • B Offline
        B Offline
        BKBK
        wrote on last edited by
        #16

        The latest version, 24 Jan 2018 is V1.1.0. I downloaded and am trying the steps but the QT pages have changed. I try entering some of the URL directly such as:
        www.qt.io/download-open-source/
        But Chrome changes it to
        www1.qt.io/download-open-source/
        notice the www1, and gives me a page not found.

        JKSHJ 1 Reply Last reply
        0
        • B BKBK

          The latest version, 24 Jan 2018 is V1.1.0. I downloaded and am trying the steps but the QT pages have changed. I try entering some of the URL directly such as:
          www.qt.io/download-open-source/
          But Chrome changes it to
          www1.qt.io/download-open-source/
          notice the www1, and gives me a page not found.

          JKSHJ Offline
          JKSHJ Offline
          JKSH
          Moderators
          wrote on last edited by
          #17

          @BKBK said in Slow downloads with the online installer? Try this tool:

          I downloaded and am trying the steps but the QT pages have changed.

          Yes, I need to update the instructions. For now, scroll up to https://forum.qt.io/post/437282 (it's 3 posts above yours)

          Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

          1 Reply Last reply
          0
          • K Offline
            K Offline
            Komal
            wrote on last edited by
            #18

            What's for x64 based processor (windows) ???
            Same network error issue.

            JKSHJ 1 Reply Last reply
            0
            • K Komal

              What's for x64 based processor (windows) ???
              Same network error issue.

              JKSHJ Offline
              JKSHJ Offline
              JKSH
              Moderators
              wrote on last edited by
              #19

              @Komal said in Slow downloads with the online installer? Try this tool:

              What's for x64 based processor (windows) ???
              Same network error issue.

              You can use the x86 (32-bit) installer. The 32-bit installer can install 64-bit packages.

              Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

              1 Reply Last reply
              0
              • GeographG Offline
                GeographG Offline
                Geograph
                wrote on last edited by Geograph
                #20

                Fiddler-proxy with hostname-replacing helped me download from fastest mirror in my country.
                I try this tool, but Qt Installer still download from download.qt.io (only local rep was enabled)

                I past all links from this page http://download.qt.io/official_releases/online_installers/qt-unified-windows-x86-online.exe.mirrorlist in DownloadMaster and find the fastest server in Kazakhstan is mirrors.dotsrc.org

                In Qt Installer settings I add proxy 127.0.0.1:8888
                In Fiddler I change Customize Rules "OnBeforeRequest":

                if (oSession.HostnameIs("download.qt.io") && oSession.PathAndQuery.StartsWith("/online/"))
                {
                	oSession.hostname = "mirrors.dotsrc.org";
                	oSession.PathAndQuery = oSession.PathAndQuery.Replace("/online/", "/qtproject/online/");
                }
                

                downloading speed changed from 300Kb/s to 10MB/s

                gghavocG 1 Reply Last reply
                0
                • GeographG Geograph

                  Fiddler-proxy with hostname-replacing helped me download from fastest mirror in my country.
                  I try this tool, but Qt Installer still download from download.qt.io (only local rep was enabled)

                  I past all links from this page http://download.qt.io/official_releases/online_installers/qt-unified-windows-x86-online.exe.mirrorlist in DownloadMaster and find the fastest server in Kazakhstan is mirrors.dotsrc.org

                  In Qt Installer settings I add proxy 127.0.0.1:8888
                  In Fiddler I change Customize Rules "OnBeforeRequest":

                  if (oSession.HostnameIs("download.qt.io") && oSession.PathAndQuery.StartsWith("/online/"))
                  {
                  	oSession.hostname = "mirrors.dotsrc.org";
                  	oSession.PathAndQuery = oSession.PathAndQuery.Replace("/online/", "/qtproject/online/");
                  }
                  

                  downloading speed changed from 300Kb/s to 10MB/s

                  gghavocG Offline
                  gghavocG Offline
                  gghavoc
                  wrote on last edited by gghavoc
                  #21

                  @Geograph I want to try this method, unfortunately there's no fiddler-proxy on linux. There's only fiddler everywhere but it's still in beta so I don't know if there's hostname-replacement capabilities yet. Do you know any linux (mint) alternative?

                  1 Reply Last reply
                  0
                  • K Offline
                    K Offline
                    karpouzi
                    wrote on last edited by
                    #22

                    The tool didn't work for me, and it broke my Maintenance Tool. After reverting the settings, I get a message that the Maintenance Tool "appears to be older than 3.0.2".

                    And why should I have to use this tool in the first place, when Qt has been aware of this issue for so many years? I was getting useless speeds from a Japanese mirror, so I had no alternative.

                    1 Reply Last reply
                    0
                    • H Offline
                      H Offline
                      Hisni
                      wrote on last edited by
                      #23

                      I've had this issue with the Qt online installer for several years on Windows. It almost never works and I think Qt has one of the worst install experiences. To make it even worse they have recently removed the offline installers. At the moment I have no way to install Qt on Windows unless I build it my self from sources.

                      jsulmJ 1 Reply Last reply
                      0
                      • H Hisni

                        I've had this issue with the Qt online installer for several years on Windows. It almost never works and I think Qt has one of the worst install experiences. To make it even worse they have recently removed the offline installers. At the moment I have no way to install Qt on Windows unless I build it my self from sources.

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

                        @Hisni said in Slow downloads with the online installer? Try this tool:

                        they have recently removed the offline installers

                        Well, those are now only available for users with commercial license.
                        I'm too not happy with recent changes.

                        Personally I never had issues with online installer, but I know that many users have such issues and it is really pity that those are still not fixed. In most cases the issues are caused by slow/not reachable mirrors, but the official installer does not provide the possibility to select another mirror from a list.

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

                        1 Reply Last reply
                        0
                        • H Offline
                          H Offline
                          Hisni
                          wrote on last edited by
                          #25

                          I have been trying daily since 12th this month. After posting here yesterday it now works. Coincidence or not, I don't know :)

                          1 Reply Last reply
                          0
                          • JKSHJ Offline
                            JKSHJ Offline
                            JKSH
                            Moderators
                            wrote on last edited by
                            #26

                            After a long journey, the official Qt Online installer has now added support for mirror selection. A big thanks to the engineers at the Qt Company: https://wiki.qt.io/Online_Installer_4.x#Selecting_a_mirror_for_opensource

                            Thank you also to everyone who used the Qt SDK Repo Chooser over the years!

                            Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                            1 Reply Last reply
                            5

                            • Login

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