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.8k Topics 51.2k Posts
  • How to add executable file and deployment path to deployment settings

    Unsolved
    1
    0 Votes
    1 Posts
    210 Views
    No one has replied
  • [.rcc\release\qrc_mimetypes.cpp] Error 2

    Unsolved
    10
    0 Votes
    10 Posts
    934 Views
    SGaistS
    One other thing you can do is check whether you get the same issue with the latest LTS.
  • Cannot open Qt5 creator after complete installation on Raspberry Pi 3

    Unsolved
    3
    0 Votes
    3 Posts
    676 Views
    SGaistS
    Hi, You should also start your application with the QT_DEBUG_PLUGINS environment variable set to 1. That will give you information about what is happening.
  • Unable to load plugins: qtaudio_windows.dll

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    hskoglundH
    Hi, you could try tracing the loading of plugins, to see what the problem is, open a CMD window and type SET QT_DEBUG_PLUGINS=1 then launch your QtGuiApplication2.exe from the same CMD window. To see the output of the trace, you need to download and start DebugView
  • Remove login credential from MaintenanceTool (installer)

    Solved maintenancetool installer
    2
    0 Votes
    2 Posts
    2k Views
    mrjjM
    Hi Try to remove "C:\Users\USERNAME\AppData\Roaming\Qt\qtaccount.ini" (copy it first to somewhere to be able to put it back if it explodes :)
  • Installation download speed is very less (in Kbs)

    Unsolved
    2
    0 Votes
    2 Posts
    197 Views
    mrjjM
    Hi and welcome to the forums You could try another mirror and see if that helps https://forum.qt.io/topic/43349/slow-downloads-with-the-online-installer-try-this-tool
  • Maintenancetool checkupdates no output

    Unsolved
    1
    0 Votes
    1 Posts
    168 Views
    No one has replied
  • How to configure only what's necessary for a specific module.

    Solved
    10
    0 Votes
    10 Posts
    2k Views
    SGaistS
    The information is more clearly available now with the dev branch (which is Qt 6 development). A third option is to build qtbase first and then the other modules.
  • My code and ui file is asynchronous,how to solve it ?

    Unsolved
    2
    0 Votes
    2 Posts
    207 Views
    aha_1980A
    Hi @Sakazuki please show your .pro file.
  • Why is it so difficult to allow selecting download mirrors

    Unsolved
    2
    0 Votes
    2 Posts
    272 Views
    jsulmJ
    @hanch You can see that there are several bugs reported: https://bugreports.qt.io/browse/QTIFW-1164?jql=text ~ "select mirror" I agree this is an issue and should be fixed. Though this forum is the wrong place to ask for features/bug fixes as it is a user forum. Use the Qt bug tracker or ask on Qt developers mailing list.
  • question about windeployqt.exe

    Unsolved
    11
    0 Votes
    11 Posts
    1k Views
    jsulmJ
    @DeveloperDeveloper35 It depends. If a lib is loaded at runtime then your app can work without it as long as it is not used. This is how plug-ins work: the app is not linked at link time against the plug-ins, instead plug-ins are loaded at runtime dynamically.
  • stop qt build process compiling multiple files in one invocation on windows

    Unsolved
    3
    0 Votes
    3 Posts
    361 Views
    C
    @Christian-Ehrlicher sorry I'm not being rude but that doesn't make sense (I appreciate English my not be your first language) do you mean why do I rebuild Qt multiple times ? because of changes.: upgrade qt version, change compile options change configure options use internal libpng, internal zlib internal libjpeg. quite often you build something then realise you need different options when you run up against an issue, supporting 3 operating systems with multiple permutations of each requires different build options.
  • 0 Votes
    6 Posts
    1k Views
    SGaistS
    Can you give more details than "cannot work" ?
  • QT licensing

    Solved
    2
    0 Votes
    2 Posts
    246 Views
    jsulmJ
    @mahesh_j If you have a commercial license then you should ask Qt Company, not here in user forum.
  • 0 Votes
    11 Posts
    1k Views
    M
    I did it by installing 32 bit qt on another system thank you for everything !!
  • Disable 'Cancel' & 'Close' buttons in install.qs

    Unsolved
    5
    0 Votes
    5 Posts
    599 Views
    V
    Just tried this: Controller.prototype.ReadyForInstallationPageCallback = function () { var page = gui.pageWidgetByObjectName("ReadyForInstallationPage"); var cancelButton = gui.findChild(page, "CancelButton"); if (cancelButton != null) { console.log("cancelButton found"); cancelButton.setEnabled(false); cancelButton.enabled = false; } else { console.log("cancelButton NOT found"); } // gui.clickButton(buttons.NextButton); } Again, the 'Cancel' button is still present/enabled.
  • 0 Votes
    7 Posts
    5k Views
    Chris KawaC
    @mourke said : They're dynamically linked libraries so they'd only be loaded once the code is called correct? No. The function pointers are resolved when your module is loaded. That's when you're getting that error. What you can do is put that troublesome part into another dll and load it dynamically (e.g. using QLibrary) only on Windows versions that support it.
  • Where to install a db connector?

    Moved Solved
    3
    0 Votes
    3 Posts
    372 Views
    U
    Thanks man... Still don't decide which installation tool to use... may be some kind of wizard.. Thanks.
  • Simplest way to install Qt in Ubuntu (19.10) with MySQL driver?

    Unsolved
    28
    0 Votes
    28 Posts
    6k Views
    SGaistS
    It's the first thing that gets built however, you are currently making things more complicated than necessary. You should just build the plugin using your already installed Qt rather than the full thing.
  • Qt WebGL Streaming without GPU

    Unsolved
    3
    0 Votes
    3 Posts
    801 Views
    Pablo J. RoginaP
    @condo4 said in Qt WebGL Streaming without GPU: I find the solution myself. great and thank you for sharing it. please don't forget to mark this post as solved then!