pip install pyqt5时报错:Preparing wheel metadata ... error

问题描述

背景:在服务器上用conda搭建TensorFlow训练环境

在安装pyqt5时遇到了这个问题:
在这里插入图片描述

解决尝试

是不是代码源出问题?

pip install pyqt5 -i https://pypi.douban.com/simple

仍然报错。

是不是pip版本过低?

查看现有版本:
pip --version

在这里插入图片描述

参考https://www.jianshu.com/p/d784d147e442

查看更新后版本:

pip --version

在这里插入图片描述

再次安装pyqt5

pip install pyqt5

在这里插入图片描述
报错信息:

ERROR: pip’s dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
spyder 3.3.6 requires pyqtwebengine<5.13; python_version >= “3”, which is not installed.
spyder 3.3.6 requires pyqt5<5.13; python_version >= “3”, but you have pyqt5 5.15.3 which is incompatible.

实际上是2个版本问题:

这里参考了https://blog.csdn.net/qq_43210957/article/details/103812433

学会了使用pip check查看包问题:

在这里插入图片描述
找到问题,就可以直接三行代码搞定:

pip install --user pyqtwebengine==5.12
pip install --user pyqt5==5.12
pip install typed-ast

在这里插入图片描述

查看安装的包:

pip list

在这里插入图片描述

成功解决。

猜你喜欢

转载自blog.csdn.net/Xiao_Spring/article/details/114413575
今日推荐