Python 中 pip 设置为阿里镜像源
Python 中的 pip 默认源,在国内下载很慢,修改为阿里云的 pip 源提升下载速度。
配置文件
a. 找到下列文件
Linux 在~/.pip/pip.conf
,Windows 在~/AppData/Roaming/pip/pip.ini
b. 在上述文件中添加或修改:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
使用命令设置
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
本作品采用 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议 (CC BY-NC-ND 4.0) 进行许可。