博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python之PyQt5安装timeout解决
阅读量:4110 次
发布时间:2019-05-25

本文共 218 字,大约阅读时间需要 1 分钟。

背景:

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

解决:

通过镜像url直接读装

以前的命令:

pip3 install PyQt5

修复之后的命令:

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

 

 

转载地址:http://qeqsi.baihongyu.com/

你可能感兴趣的文章
创建索引
查看>>
new与delete
查看>>
线索二叉树
查看>>
外部排序 归并排序
查看>>
POJ 3255 Roadblocks 最短路Dijkstra+堆优化
查看>>
poj 3723 最大生成树
查看>>
poj 2139 Six Degrees of Cowvin Bacon 最短路bellman 多源最短路径 (一次AC)
查看>>
Codeforces Round #329 (Div. 2) A. 2Char 字符串+暴力
查看>>
poj 3259 Wormholes 最短路bellman 题意转化很重要
查看>>
poj 2456 Aggressive cows 整数二分写法 模板题
查看>>
poj 3104 Drying 二分搜索--查找最小yes值
查看>>
poj 3111 K Best 二分搜索 最大化平均值
查看>>
POj 3258 River Hopscotch 二分搜索 最大化最小值
查看>>
poj 2674 Linear world 弹性碰撞 升级的蚂蚁
查看>>
poj 2785 4 Values whose Sum is 0
查看>>
Codeforces Round #324 (Div. 2) A. Olesya and Rodion 构造数字 思维题
查看>>
Codeforces Round #324 (Div. 2) B. Kolya and Tanya 思维题 数论
查看>>
Poj 3977 Subset 折半枚举 超大背包
查看>>
poj 2549 Sumsets 折半枚举
查看>>
poj 3276 Face The Right Way 挑战150 反转
查看>>