问题来源
ReadTimeoutError: HTTPSConnectionPool(host=
‘files.pythonhosted.org’, port=443): Read timed out.
配置国内镜像源
-
清华源:https://pypi.tuna.tsinghua.edu.cn/simple/ -
阿里云:http://mirrors.aliyun.com/pypi/simple/ -
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
① 临时使用“国内镜像源”
pip install pandas
# 使用国内镜像源下载,速度快
pip install pandas -i https://pypi.tuna.tsinghua.edu.cn/simple/
② 永久使用“国内镜像源”
mkdir ~/.pip
# 切换到该目录下
cd ~/.pip
# 在该目录下,创建一个文件
touch pip.conf
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python代码中写注释08/13
- ♥ python中多重继承的查找顺序是什么?12/22
- ♥ Python魔术方法__getattr__和getattribute10/11
- ♥ python中的列表是矩阵吗?10/29
- ♥ python map和list有什么区别11/30
- ♥ 选择python作为你的入门语言怎么样12/13
内容反馈