Mac下更改Python pip的源
2022-09-30 本文已影响0人
ag4kd
在用户的根目录执行即可
mkdir .pip
cd .pip
vim pip.conf
- 阿里云的源
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
- 豆瓣的源
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
- 若单次使用指定源,则可以如下
sudo pip install -i http://pypi.douban.com/simple/ --trusted-host=pypi.douban.com/simple ipython
参考:
https://blog.csdn.net/m0_46616322/article/details/125365107