Linux pip安装速度慢(超时报错),为pip换源
时间:2020-08-25 18:29:01
收藏:0
阅读:88
Linux pip安装速度慢(超时报错),为pip换源
mkdir -p ~/.pip/
vim pip.conf
pip.conf中内容如下:
[global]
index-url=http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
评论(0)