欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python之PyQt5安装timeout解决 博客分类: python  

程序员文章站 2024-02-25 23:10:09
...

背景:

安装PyQt5的时候报错,timeout,外网你懂的

解决:

通过镜像url直接读装

以前的命令:

pip3 install PyQt5

修复之后的命令:

pip3 install --index-url yoururl PyQt5

比如url为:https://pypi.douban.com/simple
pip3 install --index-url https://pypi.douban.com/simple PyQt5