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.5k Topics 50.0k Posts
  • new to QtCreator and QML, module not found

    Unsolved
    1
    0 Votes
    1 Posts
    67 Views
    No one has replied
  • 0 Votes
    16 Posts
    748 Views
    A

    @Axel-Spoerl said in Raspberry Pi 4 touchscreen with Qt5.15 embedded is not working:

    No, I have no more ideas.

    I found that "-plugin tslib" touchscreen works.
    "export QT_QPA_FB_TSLIB=1" does not work.
    If I write "root@pi:~# /home/pi/Qt_Projects/kiab/kia -plugin tslib" then the touchscreen works.

  • Linux Install Problem

    Unsolved
    8
    0 Votes
    8 Posts
    268 Views
    JonBJ

    @jsulm
    I wrote

    If you installed the open source that means you will have to build Qt?

    Note the question mark at the end, indicating that I was uncertain that is what they wanted/needed? But I understand now :)

  • 0 Votes
    9 Posts
    4k Views
    L

    @Jhonadam11 Get out of here with these AI generated responses.

    I'd just flag their account, but I don't have the 2 rep required as this is my first post.

  • 0 Votes
    3 Posts
    124 Views
    C

    I managed to download the mobile library using another mirror. Thanks for the advice. However, when I try to run QtDesignStudio I get the following error:

    "Runtime Error! R6034 An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information."

    But when I dismiss the error message the DesignStudio seems to run normally.

  • Remove qt commercial license after trial period

    Moved Unsolved
    2
    0 Votes
    2 Posts
    78 Views
    JonBJ

    Solution to remove the licence may depend what platform you are on....

  • 0 Votes
    3 Posts
    284 Views
    hskoglundH

    Hi, the culprit might be that $(QTDIR)\lib you added as a linker additional dependency, so even though that directory does not contain any *.lib files (only the subdirectories do) the linker adds that as a dummy .lib file anyway (note: just a guess :-)

  • 0 Votes
    2 Posts
    150 Views
    SGaistS

    Hi and welcome to devnet,

    Silly question but: do you have that library there ?

  • Problem connecting mysql to my qt application under linux

    Unsolved
    10
    0 Votes
    10 Posts
    320 Views
    jsulmJ

    @Alfredy said in Problem connecting mysql to my qt application under linux:

    How do I download this?

    If you search for "mysql client library" you will find https://dev.mysql.com/downloads/c-api/
    But it looks like you're on Linux, in that case install the package containing MySQL client library (on Ubuntu it's libmysqlclient21).

  • qt websockets on windows

    Solved
    7
    0 Votes
    7 Posts
    255 Views
    SGaistS

    I mean the mirror used by the installer to get its data and packages. See here.

    No, there should not be that big a difference between these two minor release. A module can be a TP but in that case, it's clearly noted as such

  • Compilation of Qt5.3.1 on Ubuntu 20.04.1

    Solved
    13
    0 Votes
    13 Posts
    3k Views
    P

    Assuming you run configure in qt source directory, you can specify QMAKEFEATURES like this:

    QMAKEFEATURES=$PWD/qtbase/mkspecs/features \ ./configure
  • Installing Qt without commercial license

    Solved
    10
    0 Votes
    10 Posts
    1k Views
    JonBJ

    @Ronel_qtmaster
    The OP asked for Qt 5.15.15, you show version up to 5.15.2.

    Be aware too that recently there was a long discussions where apparently versions like 5.15.x seemed to be available for download to some people but not others, perhaps depending on their platform. I don't know whether anyone figured out definitively what was going on.

  • Installer Framework error

    Unsolved
    2
    0 Votes
    2 Posts
    111 Views
    Axel SpoerlA

    You need to run the installer from the command line and switch to another mirror.
    https://doc.qt.io/qt-6/get-and-install-qt-cli.html

  • Installation Error

    Unsolved
    5
    0 Votes
    5 Posts
    3k Views
    SGaistS

    @finch Hi and welcome to devnet,

    Based on the 6.7 supported platform list, you need Ubuntu 22.04.

  • Qt crash at installation

    Solved
    30
    1 Votes
    30 Posts
    6k Views
    D

    This took me ages to fix but in the end I fixed this problem by:

    Example Batch Script:
    Here’s how you can create a batch script to clear the PATH and run the Qt installer:

    Open Notepad.
    Copy and paste the following lines into Notepad:
    batch
    Copy code
    @echo off
    rem Clear the PATH environment variable
    set PATH=
    rem Run Qt installer
    "InstallerPath/...."
    Save the file with a .bat extension, for example, install_qt.bat.
    Run the batch script by double-clicking it. This will open a Command Prompt window, clear the PATH, and then run the Qt installer.
    Note:
    Replace "InstallerPath/...." with the correct path to your Qt installer.
    Ensure that the Qt installer file you're using is not corrupted and that you have downloaded it completely.

  • how to get a configure script to find a static Qt plugin

    Unsolved
    1
    0 Votes
    1 Posts
    51 Views
    No one has replied
  • Qt 5.x not showing up in Online Installer

    Unsolved
    3
    0 Votes
    3 Posts
    213 Views
    J.HilkJ

    check the archive checkbox.

  • Qt 7.6.1 problem building qtmultimedia with ffmpeg plugin

    Unsolved
    6
    0 Votes
    6 Posts
    470 Views
    C

    @SGaist I couldn't find anything that was wrong or why it was not working so decided to spend my time/energy in getting a clean install of Ubuntu 24.04 up and running and then built Qt6.7.1 with all the dependancies. I've just built QT Creator succesfully against my 671 build and so got what I wanted in the end.

    Thanks for your comments and pointers, time to go play with making Creator widget plug ins now :-)

  • Ubuntu QT

    Unsolved
    2
    0 Votes
    2 Posts
    135 Views
    Christian EhrlicherC

    Please properly format your code so others can read it.
    When you use a class/function from a library, you also have to link against it. You are using the QSerialPortInfo class so you also must link against the library which contains it as written in the documentation.

  • Audio and Video Playback Stuck in QT6 Docker

    Unsolved
    1
    0 Votes
    1 Posts
    122 Views
    No one has replied