Skip to content

Installation and Deployment

Your Qt just doesn't want to build? Your compiler can't find the libs? Here's where you find comfort and understanding. And help.
9.6k Topics 50.3k Posts
  • 18 Votes
    1 Posts
    22k Views
    No one has replied
  • install qt6.8.1 opensource in linuxmint 22.1

    Solved
    7
    0 Votes
    7 Posts
    154 Views
    H

    @jsulm i install all the dependencies and then excute configure again and solve my problem.
    thanks bro

  • problem deploying qt app with camera

    Solved
    10
    0 Votes
    10 Posts
    231 Views
    QtFriend2024Q

    @SGaist Hello, I switched to using OpenCV lib and a USB Camera instead of a CSI (Camera Serial Interface) Camera. I am able to build and run the application but it's a plain C++ application. I'll work on this more....

  • 0 Votes
    2 Posts
    38 Views
    M

    For some reasons I had to click on "Re-configure with initial parameters" and now the variables have the correct path.

  • Installing Qt5SerialBus in Flatpak

    Unsolved
    1
    0 Votes
    1 Posts
    20 Views
    No one has replied
  • Unresolved external symbol attempting to build 5.2

    Solved
    18
    1 Votes
    18 Posts
    24k Views
    K

    Seems like the problem is that configure is finding a python.exe which is in the:
    C:\Users\Lionel\AppData\Local\Microsoft\WindowsApps\python.exe

    But this is a 'shortcut' to install python from windows store, not an actual python interpreter path. I'm experimenting how to resolve it.

    I can also see, that building Qt5 relies on Python27. It might be good just to prepend the inital 'configure' with setting python path to:
    set PATH=c:\Python27;%PATH%

  • QML crash in Qt 6.8.2 - help to read stack trace

    Unsolved
    1
    0 Votes
    1 Posts
    33 Views
    No one has replied
  • Installation Error

    Unsolved
    11
    0 Votes
    11 Posts
    3k Views
    G

    @NathanJS
    I performed exactly the same procedure and encountered the same problem, but even running the command with "sudo" does not change anything.

    Debian 12 on wsl2 with gcc 12.2.0

  • Cannot find ZLIB library after qmake2cmake conversion

    Unsolved
    1
    0 Votes
    1 Posts
    35 Views
    No one has replied
  • 0 Votes
    1 Posts
    44 Views
    No one has replied
  • Cant install QtCreator 4.8.1

    Moved Unsolved
    2
    0 Votes
    2 Posts
    50 Views
    jsulmJ

    @kumaran13 Do exactly what the error message suggests

  • 0 Votes
    2 Posts
    55 Views
    SGaistS

    Hi and welcome to devnet,

    This rather looks like an online installation.

    As the error message suggests, try a different mirror.

  • 0 Votes
    1 Posts
    54 Views
    No one has replied
  • qt android 5.15.16 multiAbi not support x86_64?

    Unsolved
    1
    0 Votes
    1 Posts
    167 Views
    No one has replied
  • AddClipboardFormatListener error during PyQt6 app run

    Unsolved
    1
    0 Votes
    1 Posts
    40 Views
    No one has replied
  • 0 Votes
    9 Posts
    218 Views
    M

    I meet the exactly problem, early version no problem, but now only V6.0 above avaialable, but after download and install , always show home/username/Qt/Tools/QtCreator/bin/qtcreator: /lib/aarch64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.32' not found (required b

  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • Failing to macdeployqt

    Unsolved
    6
    0 Votes
    6 Posts
    144 Views
    S

    Well, an app is just one single program. Internally, the "app" is just a folder ending in .app. Inside it you'll find Contents/MacOS and that is where the single executable is located which is launched when opening the app (e.g. double clicking on the folder). If you have additional command line programs those usually are not apps (you'd have to type open mytool instead of ./mytool to run the command on the command line). If these are just called from the main app you can hide them inside the app folder (maybe Contents/Resources or create Contents/bin). Otherwise, Apple also has installer packages (.pkg) which extract several items (instead of just a single app folder) to their appropriate places. There would be an appropriate place for command line tools and the PATH environment variable should also be adapted to make them visible. But, I don't know how to create .pkgs.

    If you truly have multiple GUI programs, these should actually be separate apps.

  • Invalid Link

    Unsolved
    4
    0 Votes
    4 Posts
    243 Views
    Pl45m4P

    @Fares-Haoua said in Invalid Link:

    i wanted to download it

    Download what?

    educational account

    Is it verified already?!

    "link expired" window popped

    what should i do ?

    Try to resend the link or contact the Qt Company.

  • Qt 64 bits application

    Solved
    24
    0 Votes
    24 Posts
    875 Views
    JonBJ

    @Pierre-Emmanuel said in Qt 64 bits application:

    Maybe or maybe not ?

    Not "maybe". Creator (nor Qt itself) has nothing to do with runtime searching for libraries/DLLs for an executable. That is done by the OS/Windows, and that requires them to be found on either PATH or in the same directory as the executable. This would also be the case if you ran your program quite outside of Creator. No OS searches PATH recursively (would be too slow and too dangerous). So something has changed between your Qt5/6 or its environment.