mac 下给pip换源

  1. 在终端进入目录:cd ~/
  2. 如果没有 .pip 文件夹,那么就新建这个文件夹,mkdir .pip
  3. 然后在 .pip 文件夹内新建一个文件 touch pip.conf
  4. 编辑pip.conf 文件,写入第三方源
1
2
3
4
5
6
7
8
阿里云:
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
1
2
3
4
5
6
7
8
豆瓣:
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
1
2
3
4
清华:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
盛艳明 wechat
欢迎您扫一扫上面的微信公众号,订阅我的博客!