pyqt5_tools designer.exe does not exist

Question:

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:UsersUserAppDataLocalProgramsPythonPython38Libsite-packagespyqt5_tools directory. These are content of that folder.

enter image description here

Asked By: Xose

||

Answers:

On my system QT Designer is saved under C:UsersUserAppDataLocalQt 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.

Answered By: FrozenAra

using the pip install pyqt5-tools method I found the designer on this path:
C:UsersuserAppDataLocalProgramsPythonPython39Libsite-packagesqt5_applicationsQtbin

Answered By: Floxyz

pip install pyqt5-tools

Check the path your_python_installedLibsite-packagesqt5_applicationsQtbindesigner.exe

Answered By: user10242552
pip install pyqt5-tools

I Found designer.exe in:

%APPDATA%RoamingPython[Version]site-packagesqt5_applicationsQtbin
Answered By: gibby3d

I found it on path
venvLibsite-packagesqt5_applicationsQtbin

Answered By: Nauman Sharif

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.

Answered By: ymer

I searched the site-packages folder and found out that the designer.exe now exists under the ./Lib/site-packages/qt5_applications/Qt/bin

I am currently using Python 3.9.13

Answered By: 4Redcross
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.