pyqt / python-qt5

Unofficial PyQt5 via PyPI for Python 2.7 64-bit on Windows
GNU General Public License v3.0
280 stars 78 forks source link

cannot find pyuic5.bat #29

Closed dkvv closed 7 years ago

dkvv commented 7 years ago

Hi there,I've been using python27 for several days to do a homework,Im new to it and then my teacher asked me to add a GUI for my program,by PyQt,I looked up on the riverbank website and learned that binary wheel was only for python35 and above, build and install SIP and PYQT5 was too complex for me and I found this,using pip install python-qt5, I successfully installed pyqt5,but when I did as the reference "pycuic5 xx.ui ",it didnt work,and I didnt find the pyuic5 in the python27/scripts folder either.

how can I fix it? and is there anything else that's different from the "offical installation"?

thanks very much!

mottosso commented 7 years ago

Hi @dkvv, sorry for the late reply.

In place of this file, try running this.

python -m PyQt5.uic.pyuic

Or make your own, with this.

pyuic5.bat

python -m PyQt5.uic.pyuic %*
dkvv commented 7 years ago

@mottosso thx for the reply!! and thank you for this repo,a great convienience for me!