Python3.5.2 错误——QtGui.so:未定义符号:PySlice_AdjustIndices

Python3.5.2 错误——QtGui.so:未定义符号:PySlice_AdjustIndices

在此处输入图片描述 我尝试了很多次,但仍然显示与上图相同的错误:

ImportError: /usr/local/lib/python3.5/dist-packages/PyQt5/QtGui.so: undefined symbol: PySlice_AdjustIndices

我有这个错误,请帮我解决

答案1

尝试使用 pip 安装版本 < 5.11 的 PyQt5

sudo pip3 install -U "PyQt5<5.11"

如果你没有 pip,你可以先从 ubuntu 的 apt 安装它

sudo apt install python3-pip

或者从 pypa.io 使用

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python3 get-pip.py

相关内容