pip加速、pip躲過ssl版本問題以及pip更換國內映象。
阿新 • • 發佈:2018-11-10
在Anaconda中使用pip install 下載想要的軟體包。提示時間超時、SSL版本出現問題。當解決版本問題之後,使用pip install package 時,出現找不到軟體。
原因為進入國外的網站,,撞牆了!!!!!
首先,解決ssl版本問題:
pip install --trusted-host pypi.python.org pythonPackageName
該方法沒有解決根本原因,只是越過ssl 版本進行下載。
pip 加速方法:
[email protected]:~$ mkdir .pip/pip.config
在裡面填寫:vim pip.config
[global]
timeout = 60
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
儲存。
pip 更換至國內源:
目前國內的映象源有很多,比較流行的有豆瓣、阿里、清華映象。
豆瓣:http://pypi.douban.com/simple/
清華:https://pypi.tuna.tsinghua.edu.cn/simple 阿里:https://opsx.alibaba.com/mirror
目前我經常使用的為清華映象。臨時使用的方法為:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple package
用-i 進行指定。
長久使用的方法:
更改pip加速的配置,如上所示:
將index-url對應的網址改為清華映象的網址進行改進。
#########################
eg:在anaconda中下載matplotlib軟體的命令為:
pip install --index-url=https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.python.org matplotlib
注:對於ssl版本問題,這裡只有臨時的方法。永久改動,試過很多部落格介紹的方法,都不好用。。。
很多方法出現了雞生蛋、蛋生雞的問題!!