PyQt5-5.8.2 doesn't function on Windows 10

后端 未结 3 1570
刺人心
刺人心 2021-01-28 05:14

I need to install qscintilla. I use pip for that:

> pip install qscintilla

PyQt5 automatically upgrades to the latest ve

3条回答
  •  广开言路
    2021-01-28 05:48

    The root issue for me was different versions of PyQt wheel (5.9) and pyqt windows distro (5.6 - the last precompiled version available).

    I found matching 5.6 wheel, but it only supported Python 3.5. So, I downgraded Python to 3.5 and installed PyQt5-5.6-cp35-none-win_amd64.whl

    pip install pyqt5==5.6 
    

    works equally well.

提交回复
热议问题