1. 程式人生 > >pip安裝使用本地源

pip安裝使用本地源

修改 vim /root/.pip/pip.conf

改成  [global]
#index-url=http://mirrors.aliyun.com/pypi/simple/
index-url=https://pypi.doubanio.com/simple/
[install]
trusted-host=mirrors.aliyun.com
#trusted-host=mirrors.cloud.aliyuncs.com

pipy國內映象目前有:

  http://pypi.douban.com/  豆瓣

  http://pypi.hustunique.com/

  華中理工大學

  http://pypi.sdutlinux.org/  山東理工大學

  http://pypi.mirrors.ustc.edu.cn/  中國科學技術大學
 使用映象的方法可以在每次執行pip的時候加上引數"-i http://e.pypi.python.org/simple"即可,

或者也可以在本地配置,這樣就不用每次都加上引數了,

使用pip的使用者可以如下配置:

在unix和macos,配置檔案為:$HOME/.pip/pip.conf

在windows上,配置檔案為:%HOME%\pip\pip.ini

需要在配置檔案內加上:

[global]

index-url=http://pypi.douban.com/simple
 

 

 新的版本中會在非https傳輸的映象站上報出如下錯誤:

    This repository located at pypi.douban.com is not a trusted host, if this repository is available via HTTPS it is recommend to use HTTPS instead, otherwise you may silence this warning with ‘–trusted-host pypi.douban.com’.

    DEPRECATION: Implicitly allowing locations which are not hosted at a secure origin is deprecated and will require the use of –trusted-host in the future.

    Requirement already up-to-date: pip in /usr/lib/python2.7/site-packages

解決辦法就是:

編輯$HOME/.pip/pip.conf

 

[global]

trusted-host=pypi.douban.com
index-url=http://pypi.douban.com/simple/