Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Behind the Scenes
  3. Qt.io webservices
  4. download.qt.io is down ?
Forum Update on Monday, May 27th 2025

download.qt.io is down ?

Scheduled Pinned Locked Moved Unsolved Qt.io webservices
78 Posts 39 Posters 32.9k Views
  • 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.
  • F Offline
    F Offline
    FlorianReimold
    wrote on last edited by
    #39

    For the moment you can install Qt from any mirror using aqtinstall (=> Another Qt Installer), which is actually meant for automatic installations from command line. It won't install QtCreator, though. Only libraries and binaries for building your project. Check out the aqtinstall github page for a manual: https://github.com/miurahr/aqtinstall

    1. Download Python and check "Add to PATH"

    2. pip install aqtinstall

    3. Install Qt with aqt:

    C: & cd C:\ & mkdir C:\Qt

    python -m aqt install --base https://qt-mirror.dannhauer.de/ --outputdir c:\Qt 5.15.2 windows desktop win64_msvc2019_64

    A 1 Reply Last reply
    1
    • S StenGay

      I've installed qt creator with the offline installer but it asks me to select a version and it says "No suitable kits found." so I can't open or finish my school project that is due to tomorrow, what should I do to get it working? I've tried getting this program to work for 4 days now, I don't understand why we can't use visual studio instead.....

      E Offline
      E Offline
      EsmeraldaQuintero
      wrote on last edited by
      #40

      @StenGay I download and installed the Qt 5.12 offline without issues.
      https://qt-mirror.dannhauer.de/official_releases/qt/5.12/5.12.10/
      I'm not pretty sure but when you try to install Qt behind a proxy you must configure the settings in the installer, but if not there should be no issues.

      Then when the installation continues, there is a screen asking you for what packages you want. In my case I select msvc and mingw tool kits and the mingw compiler.

      If you want another version of mingw you could download from here
      https://sourceforge.net/projects/mingw-w64/files/Toolchains targetting Win32/Personal Builds/mingw-builds/installer/mingw-w64-install.exe/download

      1 Reply Last reply
      0
      • mzimmersM Offline
        mzimmersM Offline
        mzimmers
        wrote on last edited by
        #41

        Anyone have an update? I looked at the link that SGaist provided above, but it hasn't been updated.

        Seems the problem is even affecting the maintenance tool itself:

        qtMaint.PNG

        1 Reply Last reply
        0
        • C Offline
          C Offline
          craigmac
          wrote on last edited by
          #42

          Can anyone explain how to install 6.0.0 from sources on macOS (11 Big Sur)? Apparently 6.0.0+ will not have
          off-line installers (for open-source license, at least), so my option is to build from 6.0.0 sources (or wait who knows
          how long for the qt online install app to work again).

          I've got the sources: the file called "qt-everywhere-src-6.0.0.tar.gz" by doing:

          cd /tmp
          wget https://qt-mirror.dannhauer.de/official_releases/qt/6.0/6.0.0/single/qt-everywhere-src-6.0.0.tar.xz
          tar xzvf qt-everywhere-src-6.0.0.tar.xz
          cd qt-everwhere-src-6.0.0
          

          The README still talks about 5.x installation, and the 'Linux, Mac:' section is saying to do:

          ./configure --prefix $PWD/qtbase -opensource -nomake tests
          make -j 4
          

          Error I get:

          qt-everywhere-src-6.0.0 $ ./configure --prefix $PWD/qtbase -opensource -nomake tests
          + cd qtbase
          + /tmp/qt-everywhere-src-6.0.0/qtbase/configure -top-level --prefix /tmp/qt-everywhere-src-6.0.0/qtbase -opensource -nomake tests
          CMake Error at qtbase/cmake/QtProcessConfigureArgs.cmake:227 (message):
            Invalid command line parameter '/tmp/qt-everywhere-src-6.0.0/qtbase'.
          Call Stack (most recent call first):
            qtbase/cmake/QtProcessConfigureArgs.cmake:503 (qtConfAddError)
          

          Appreciate any pointers!

          F P kkoehneK 3 Replies Last reply
          0
          • C craigmac

            Can anyone explain how to install 6.0.0 from sources on macOS (11 Big Sur)? Apparently 6.0.0+ will not have
            off-line installers (for open-source license, at least), so my option is to build from 6.0.0 sources (or wait who knows
            how long for the qt online install app to work again).

            I've got the sources: the file called "qt-everywhere-src-6.0.0.tar.gz" by doing:

            cd /tmp
            wget https://qt-mirror.dannhauer.de/official_releases/qt/6.0/6.0.0/single/qt-everywhere-src-6.0.0.tar.xz
            tar xzvf qt-everywhere-src-6.0.0.tar.xz
            cd qt-everwhere-src-6.0.0
            

            The README still talks about 5.x installation, and the 'Linux, Mac:' section is saying to do:

            ./configure --prefix $PWD/qtbase -opensource -nomake tests
            make -j 4
            

            Error I get:

            qt-everywhere-src-6.0.0 $ ./configure --prefix $PWD/qtbase -opensource -nomake tests
            + cd qtbase
            + /tmp/qt-everywhere-src-6.0.0/qtbase/configure -top-level --prefix /tmp/qt-everywhere-src-6.0.0/qtbase -opensource -nomake tests
            CMake Error at qtbase/cmake/QtProcessConfigureArgs.cmake:227 (message):
              Invalid command line parameter '/tmp/qt-everywhere-src-6.0.0/qtbase'.
            Call Stack (most recent call first):
              qtbase/cmake/QtProcessConfigureArgs.cmake:503 (qtConfAddError)
            

            Appreciate any pointers!

            F Offline
            F Offline
            FlorianReimold
            wrote on last edited by
            #43

            @craigmac In our CI build toolchain we basically use aqtinstall (through a github action) to install Qt. We use macOS 10 and Qt 5.15.2 though. The resulting command line is:

            python3 -m aqt install 5.15.2 mac desktop -O /Users/runner/work/ecal/Qt

            Maybe try to combine that with a mirror and your desired Qt Version and you don't have to compile Qt on your own.

            Untested command line (I don't own a mac):
            python3 -m aqt install --base https://qt-mirror.dannhauer.de/ 6.0.0 mac desktop -O /Users/runner/work/ecal/Qt

            You should be able to install aqt with pip3 install aqtinstall. Maybe this will help you.

            1 Reply Last reply
            0
            • M Offline
              M Offline
              Mohamab29
              wrote on last edited by
              #44

              can someone update us if the qt server is up?

              E 1 Reply Last reply
              0
              • M Mohamab29

                can someone update us if the qt server is up?

                E Offline
                E Offline
                EsmeraldaQuintero
                wrote on last edited by
                #45

                @Mohamab29
                Issue is still present at this time.

                1 Reply Last reply
                0
                • C craigmac

                  Can anyone explain how to install 6.0.0 from sources on macOS (11 Big Sur)? Apparently 6.0.0+ will not have
                  off-line installers (for open-source license, at least), so my option is to build from 6.0.0 sources (or wait who knows
                  how long for the qt online install app to work again).

                  I've got the sources: the file called "qt-everywhere-src-6.0.0.tar.gz" by doing:

                  cd /tmp
                  wget https://qt-mirror.dannhauer.de/official_releases/qt/6.0/6.0.0/single/qt-everywhere-src-6.0.0.tar.xz
                  tar xzvf qt-everywhere-src-6.0.0.tar.xz
                  cd qt-everwhere-src-6.0.0
                  

                  The README still talks about 5.x installation, and the 'Linux, Mac:' section is saying to do:

                  ./configure --prefix $PWD/qtbase -opensource -nomake tests
                  make -j 4
                  

                  Error I get:

                  qt-everywhere-src-6.0.0 $ ./configure --prefix $PWD/qtbase -opensource -nomake tests
                  + cd qtbase
                  + /tmp/qt-everywhere-src-6.0.0/qtbase/configure -top-level --prefix /tmp/qt-everywhere-src-6.0.0/qtbase -opensource -nomake tests
                  CMake Error at qtbase/cmake/QtProcessConfigureArgs.cmake:227 (message):
                    Invalid command line parameter '/tmp/qt-everywhere-src-6.0.0/qtbase'.
                  Call Stack (most recent call first):
                    qtbase/cmake/QtProcessConfigureArgs.cmake:503 (qtConfAddError)
                  

                  Appreciate any pointers!

                  P Offline
                  P Offline
                  Paper
                  wrote on last edited by Paper
                  #46

                  @craigmac You can just reference what Homebrew does. Although homebrew is now trying to upgrade to Qt6. By the way, issue still present at this time.

                  1 Reply Last reply
                  0
                  • R Offline
                    R Offline
                    RunLee
                    wrote on last edited by
                    #47

                    anybody knows when the server is up?

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

                      Quoting Tuukka:

                      Hi,
                       
                      Status update of the problem with open-source downloads: Last night we finally got a disk big enough for the packages from the service provider. Most of the data has been transferred throughout the night with a few last things still being uploaded to the new virtual server. After the data transfer is complete we start testing and validation of the data and the system. Target is to enable first the online installer, then the offline packages and finally the achieve of old releases.
                       
                      Yours,
                       
                                      Tuukka
                      

                      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
                      • jsulmJ jsulm

                        @StenGay You have to install Qt also. And a compiler (on Windows select Qt for MinGW).

                        S Offline
                        S Offline
                        StenGay
                        wrote on last edited by
                        #49

                        @jsulm Yea thanks, I did that and finally got it working.

                        1 Reply Last reply
                        0
                        • J Janus Li

                          @StenGay I'm also new to Qt but as far as I know Qt creator and Qt are different things. So what you have to install are Qt and a working compiler( e.g. MinGW).

                          BTW I think this is a perfect excuse to have your ddl extended lol. Just slap the blog on your teacher('s face).

                          S Offline
                          S Offline
                          StenGay
                          wrote on last edited by
                          #50

                          @Janus-Li Yea I finally got it working, thanks! Confused the hell out of me when people kept telling me to "Install qt" lol

                          1 Reply Last reply
                          0
                          • kkoehneK Offline
                            kkoehneK Offline
                            kkoehne
                            Moderators
                            wrote on last edited by kkoehne
                            #51

                            Parts of download.qt.io is live again (and online installer should work).

                            Director R&D, The Qt Company

                            mzimmersM 1 Reply Last reply
                            1
                            • C craigmac

                              Can anyone explain how to install 6.0.0 from sources on macOS (11 Big Sur)? Apparently 6.0.0+ will not have
                              off-line installers (for open-source license, at least), so my option is to build from 6.0.0 sources (or wait who knows
                              how long for the qt online install app to work again).

                              I've got the sources: the file called "qt-everywhere-src-6.0.0.tar.gz" by doing:

                              cd /tmp
                              wget https://qt-mirror.dannhauer.de/official_releases/qt/6.0/6.0.0/single/qt-everywhere-src-6.0.0.tar.xz
                              tar xzvf qt-everywhere-src-6.0.0.tar.xz
                              cd qt-everwhere-src-6.0.0
                              

                              The README still talks about 5.x installation, and the 'Linux, Mac:' section is saying to do:

                              ./configure --prefix $PWD/qtbase -opensource -nomake tests
                              make -j 4
                              

                              Error I get:

                              qt-everywhere-src-6.0.0 $ ./configure --prefix $PWD/qtbase -opensource -nomake tests
                              + cd qtbase
                              + /tmp/qt-everywhere-src-6.0.0/qtbase/configure -top-level --prefix /tmp/qt-everywhere-src-6.0.0/qtbase -opensource -nomake tests
                              CMake Error at qtbase/cmake/QtProcessConfigureArgs.cmake:227 (message):
                                Invalid command line parameter '/tmp/qt-everywhere-src-6.0.0/qtbase'.
                              Call Stack (most recent call first):
                                qtbase/cmake/QtProcessConfigureArgs.cmake:503 (qtConfAddError)
                              

                              Appreciate any pointers!

                              kkoehneK Offline
                              kkoehneK Offline
                              kkoehne
                              Moderators
                              wrote on last edited by
                              #52

                              @craigmac said in download.qt.io is down ?:

                              --prefix

                              Use -prefix (no double --) .
                              For more advise, see also https://wiki.qt.io/Building_Qt_6_from_Git and https://doc.qt.io/qt-6/macos-building.html

                              Director R&D, The Qt Company

                              1 Reply Last reply
                              0
                              • kkoehneK kkoehne

                                Parts of download.qt.io is live again (and online installer should work).

                                mzimmersM Offline
                                mzimmersM Offline
                                mzimmers
                                wrote on last edited by
                                #53

                                @kkoehne I can confirm that it does work -- I just downloaded Design Studio 2.

                                Thanks to all who worked hard to get us back in the water...

                                1 Reply Last reply
                                0
                                • J Offline
                                  J Offline
                                  JoLu
                                  wrote on last edited by
                                  #54

                                  is there any idea when this issue will be solved?

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

                                    https://www.qt.io/blog/open-source-downloads-working-again

                                    Archives of old releases will be available again starting next week.

                                    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
                                    3
                                    • A Offline
                                      A Offline
                                      andrestoga
                                      wrote on last edited by
                                      #56

                                      Well, I'm still getting the following error:

                                      66fa6484-b63a-40e4-a099-52b96a8c3f4d-image.png

                                      jsulmJ JKSHJ 2 Replies Last reply
                                      0
                                      • A andrestoga

                                        Well, I'm still getting the following error:

                                        66fa6484-b63a-40e4-a099-52b96a8c3f4d-image.png

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

                                        @andrestoga Strange. It worked for me yesterday evening.

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

                                        1 Reply Last reply
                                        0
                                        • A andrestoga

                                          Well, I'm still getting the following error:

                                          66fa6484-b63a-40e4-a099-52b96a8c3f4d-image.png

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

                                          @andrestoga Your download started, which means that your PC was able to establish a connection with download.qt.io. However, the connection broke before it was able to complete.

                                          Please try again: Are you able to get past the error? Or does it keep stopping at 22%?

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

                                          A 1 Reply Last reply
                                          0

                                          • Login

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