Mac OS下修改python的镜像源
步骤:
切换到家目录
创建目录 .pip 并切换到该目录
创建 pip.conf 文件并写入配置信息
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn
以上采用的是 清华大学 的镜像源,经过测试比较稳定
也可以用其他:
清华:Https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
cd ~
mkdir .pip
cd .pip
touch pip.conf
vim pip.conf # 使用vim写入配置信息