一、PyPi中國鏡像
作為 easy_install 的升級版,pip 為 Pyhton 的包管理提供了極大的方便。一行命令即可完成所需模組的安裝:
pip install pandas
可是官方鏡像的訪問速度相當慢,幾乎不可用。因此十分有必要修改鏡像源來提升訪問速度,
修改鏡像源在不同作業系統中,修改檔案的位置是不同的, 在linux預設的路徑是 $HOME/.pip/pip.conf 在windows預設的路徑是 %HOME%\pip\pip.ini
預設路徑下並不存在設定檔,需要建立,然後在設定檔中寫入: [global] index-url = http://pypi.mirrors.ustc.edu.cn/simple/ 即可修改鏡像源,等號之後的部分就是鏡像源的地址。 我收集了幾個中國的PyPI鏡像源,最上方的源在我這訪問速度最快,速度依次向下遞減,所以試一試前幾個就好了。 阿里雲 速度最快 http://mirrors.aliyun.com/pypi/simple/ 中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ Python官方 https://pypi.python.org/simple/ v2ex http://pypi.v2ex.com/simple/ 中國科學院 http://pypi.mirrors.opencas.cn/simple/ 清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
二、如何使用鏡像源 使用鏡像源很簡單,用-i指定就行了,例如:
sudo easy_install -i http://pypi.douban.com/simple/ saltTesting
sudo pip install -i http://pypi.douban.com/simple/ saltTesting