-
After compiled the PythonQt, we try to run the example program PyGuiExample.exe in the lib directory, and we've gotten the following error. What's wrong with our program? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
This looks like your Qt installation is not found, or the wrong one is found. Have you checked that the |
Beta Was this translation helpful? Give feedback.
-
@mrbean-bremen Thank you. |
Beta Was this translation helpful? Give feedback.
-
Sometimes the variable QT_QPA_PLATFORM_PLUGIN_PATH can make the QT application start significant slowly. I've encountered the slow problem on my PC, and finally I've located the problem is the variable QT_QPA_PLATFORM_PLUGIN_PATH. After delete the variable, my application could just fast as before. |
Beta Was this translation helpful? Give feedback.
@mrbean-bremen Thank you.
After added the user environment variable QT_QPA_PLATFORM_PLUGIN_PATH (value: C:\Application\Qt\5.15.2\msvc2019_64\plugins\platforms), the issue is fixed.