本篇主要解决上篇深度学习pyqt安装失败的问题
PyQt是一个创建GUI应用程序的工具包。它是Python编程语言和Qt库的成功融合。Qt库是最强大的库之一。PyQt是由Phil Thompson 开发。在使用labelimg对图片做标签时,需要用到pyqt5-tools工具,尝试以下下载方式:
环境为anaconda3
查看python与pip版本号
pip --version
py版本为3.11
1、直接在anaconda prompt中运行指令:
pip install pyqt5-tools
下载报错:
2、指定镜像(推荐)
pip install PyQt5-tools -i https://pypi.douban.com/simple
连接到了pyqt5-tools,但是连接的时候较慢,下载的时候还行
显示Successfully installed PyQt5-Qt5-5.15.2 PyQt5-tools-5.15.9.3.3 pyqt5-5.15.9 pyqt5-plugins-5.15.9.2.3 python-dotenv-1.0.0 qt5-applications-5.15.2.2.3 qt5-tools-5.15.2.1.3此时安装成功
其他镜像路径如下:
pip install pyqt5-tools -i http://pypi.douban.com/simple
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
3、 因为安装pyqt5-tools就是为了用PyQt5Designer,为设计软件界面方便,于是再查资料,终于找到解决方案:直接安装PyQt5Designer。
pip install PyQt5Designer
可以安装但是很慢
4、官网下载安装文件安装:pyqt5-tools · PyPI
安装方法:打开命令行,通过命令行进入到下载的whl文件所在的文件夹,使用如下命令,安装即可(xxx.whl指下载的PyQt5安装文件):
pip install ×××.whl
安装好后再site-package下会生成pyqt5-tools的文件夹
我们需要在系统环境变量中添加以下变量值path---->D:\Soft_Install\python35\Lib\site-packages\pyqt5_tools;
通过path可以查看环境变量的值