How to install PyQt5 on Windows?

前端 未结 13 2179
谎友^
谎友^ 2020-12-04 22:41

When I try installing the PyQt5 on Windows using the command

python configure.py

I get this error:

Error: Mak         


        
13条回答
  •  生来不讨喜
    2020-12-04 22:50

    If you're using Windows 10, if you use

        py -m pip install pyqt5
    

    in the command prompt it should download fine. Depending on either the version of Python or Windows sometimes python -m pip install pyqt5 isn't accepted, so you have to use py instead. pip is a good way to download a lot of stuff, so I'd recommend that.

提交回复
热议问题