003 Python解釋器源修改

這篇文章將解除你使用python的pip install xxx受到的網速限制,若是隻是下載較小的第三方庫,能夠嘗試pip --default-timeout=100 install -U xxxpython

1、Windows阿里雲

  1. 找到python安裝目錄下的:\Lib\site-packages\pip\models\index.py文件,將PYPI的值改成你所須要的鏡像源便可,例如改成豆瓣鏡像源:
#PyPI = Index('https://pypi.python.org/')  
PyPI = Index('https://pypi.douban.com/')

2、Macurl

  1. 在終端進入目錄:cd ~
  2. mac用戶家目錄中新建文件夾:mkdir pip
  3. 而後在.pip 文件夾內新建一個文件 :vi pip.conf,而且寫入阿里雲鏡像:
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/

[install]
trusted-host=mirrors.aliyun.com
相關文章
相關標籤/搜索