22 Mar 2019

Mac-Python3-pip-配置国内源

陆子旭

国内源

  1. 阿里云
  2. 中国科技大学
  3. 豆瓣 (douban)
  4. 清华大学
  5. 中国科学技术大学

安装时指定

~ pip install ipython -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com


永久指定

# Mac OS
~ mkdir .pip	# 在家目录下创建一个.pip目录
~ cd pip
~ touch pip.conf # 创建一个pip配置文件
# 写入配置
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = mirrors.aliyun.com


参考


Tags:
0 comments