如果你发现pip install xxx之后下载的进度条前进的比乌龟还要慢,那就马上按下ctr+c终止掉这个命令吧!一般来说,pip install下载太慢是因为你用的源不太好,默认的源基本都是国外的特别慢。这时候只需要在安装的时候选择一下源就能轻松解决这个问题了,比如下面的:
# 格式:pip install -i 源路径 安装的包名称
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow
下面的是一些国内的源:
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
1.安装PyQt5
采用命令安装,Win+R,输入CMD,打开命令框,输入以下命令。
pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple
2.安装Qt的工具包
pip install PyQt5-tools -i https://pypi.tuna.tsinghua.edu.cn/simple
3.添加PyQt5-tools的环境变量,不添加变量可能会报错,无法启动
变量名:QT_QPA_PLATFORM_PLUGIN_PATH
变量值:“Python的实际安装目录”\Lib\site-packages\pyqt5_tools\Qt\plugins
如果出现以下问题可以借鉴解决:
1. 计算机中丢失MSVCP140_1.dll。
解决办法:下载安装C++的所有的运行库,一定要包含最新的版本
2. This application failed to start because no Qt platform plugin could be initialized.
解决办法:
添加环境变量
变量名:QT_QPA_PLATFORM_PLUGIN_PATH
变量值:“Python的实际安装目录”\Lib\site-packages\pyqt5_tools\Qt\plugins