pip 配置python國內映象源
阿新 • • 發佈:2018-11-12
1.雖然用easy_install和pip來安裝第三方庫很方便,它們的原理其實就是從Python的官方源https://pypi.python.org/pypi 下載到本地,然後解包安裝。 不過因為某些原因,訪問官方的pypi不穩定,很慢甚至有些還時不時的訪問不了。
2.常見國內映象源
https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ 清華
http://mirrors.aliyun.com/pypi/simple/ 阿里
http://pypi.douban.com/simple/ 豆瓣
http://pypi.hustunique.com/simple/ 華中理工大學
http://pypi.sdutlinux.org/simple/ 山東理工大學
http://pypi.mirrors.ustc.edu.cn/simple/ 中國科學技術大學
3.使用方法
3.1 臨時生效使用方法
sudo pip install -i http://pypi.douban.com/simple/ flask
3.2 要配製成預設的話,需要建立或修改配置檔案(linux的檔案在~/.pip/pip.conf,windows在%HOMEPATH%/pip/pip.ini),修改內容為:
[global]
index-url = http://pypi.douban.com/simple