pyqt5_tools designer.exe does not exist

Viewed 4341

I have installed PyQT5 by command pip install pyqt5 pyqt5-tools. Then I want to show path for designer.exe. However I could not found that in C:\Users\User\AppData\Local\Programs\Python\Python38\Lib\site-packages\pyqt5_tools directory. These are content of that folder.

enter image description here

6 Answers

using the pip install pyqt5-tools method I found the designer on this path:
C:\Users\user\AppData\Local\Programs\Python\Python39\Lib\site-packages\qt5_applications\Qt\bin

On my system QT Designer is saved under C:\Users\User\AppData\Local\Qt Designer

EDIT:
It seems like I installed QT Designer differently.
You can use pip install PyQt5Designer.
Then it should be in the path I gave.

pip install pyqt5-tools

Check the path your_python_installed\Lib\site-packages\qt5_applications\Qt\bin\designer.exe

pip install pyqt5-tools

I Found designer.exe in:

%APPDATA%\Roaming\Python\[Version]\site-packages\qt5_applications\Qt\bin

I found it on path venv\Lib\site-packages\qt5_applications\Qt\bin

If this helps someone, in my case there were two "similar" of pyqt5 folders inside site-packages, ones starts with pyqt5 and others with just qt5, I found the designer app in the folder qt5_aplications.

Related