How to install PyQt5 on Windows?

前端 未结 13 2180
谎友^
谎友^ 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:47

    One of the most (probably the most) easiest way to install site-packages like PyQt5 is installing one of the versions of Anaconda. You can just install many of site-packages by installing it. List of avaliable site-packages with Anaconda versions can be checked here.

    1. Dowload Anaconda3 or Anaconda2
    2. Install it.
    3. Add PyQt5's path inside Anaconda installation to your System Environment Variables.

    For example:

    PATH: ....; C:\Anaconda3\Lib\site-packages\PyQt5; ...
    
    1. It is ready to use.

提交回复
热议问题