一、永久修改pip软件安装默认源
使用pip config set global.index-url来直接指定下载源的URL,这样就不用手动修改配置文件了
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
以下是国内互联网常用的pypi安装源URL,在国内互联网下载的速度非常快
pypi 清华大学源:https://pypi.tuna.tsinghua.edu.cn/simple pypi 腾讯源:http://mirrors.cloud.tencent.com/pypi/simple pypi 阿里源:https://mirrors.aliyun.com/pypi/simple/ pypi 豆瓣源 :http://pypi.douban.com/simple/
二、一次性安装软件
使用 -i 参数指定安装源
pip install 要安装的包名 -i https://pypi.tuna.tsinghua.edu.cn/simple
标签:cn,simple,pypi,解决,https,pip,安装 From: https://www.cnblogs.com/ggborn-001/p/17780200.html