pip安裝報錯處理+PyPi源切換教程

1、pip安裝出錯類型

1.1 pip版本過舊致使不能安裝

報錯提示:html

You are using pip version 9.0.3, however version 10.0.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' comm
and.

可經過如下命令升級pippython

python -m pip install --upgrade pip

 

1.2 官方的PyPi鏈接超時

若是是timeout類形錯誤,那重點懷疑網絡問題,多是官方的PyPi太慢致使。網絡

這類錯誤可經過在pip.ini中index-url指定爲使用本地源進行處理。我這裏以清華源爲例,具體操做步驟看下邊第二大點。編輯器

 

1.3 HTTPS證書問題

如今不少網站都換成了HTTPS,python驗證證書沒經過時就會拒絕使用PyPi源,一般報錯以下:ide

Could not fetch URL https://pypi.tuna.tsinghua.edu.cn/simple/gg/: There was a
problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.tuna.tsin
ghua.edu.cn', port=443): Max retries exceeded with url: /simple/numpy/ (Caused by S
SLError(SSLError(1, u'[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed
 (_ssl.c:726)'),)) - skipping

這類錯誤可經過在pip.ini中添加trusted-host進行處理。我這裏以信任清華源爲例,具體操做步驟看下邊第二大點。post

 

1.4 缺乏VC環境依賴

這類錯誤處理,一是安裝vc環境不過到如今我還不是很明白要裝哪一個文件,更推薦的作法是使用conda安裝第三方庫,具體操做參見「PyCharm+Miniconda3安裝配置教程」 第二大點查看如何安裝conda及參看3.2.2節看如何用conda安裝第三方庫fetch

一般報錯以下:網站

「distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 is required」

「Command "python setup.py egg_info" failed with error code 1 in C:\Users\ADMINI~1\AppData\Local\Temp\pip-install-6fjrrgj5\cffi\」

 

 

2、將PyPi切換爲本地源並處理證書錯誤

2.1 查看%APPDATA%路徑【可選】

echo %APPDATA%

 

2.2 建立 %APPDATA%\pip\目錄

我這裏直接在cmd使用命令建立。圖形界面創的話,上一步咱們已查到%APPDATA%的指向了一層層根着創便可ui

mkdir %APPDATA%\pip

 

2.3 建立pip.ini文件

使用文件編輯器建立一個文本,而後輸入如下內容,並將其保存到上邊的%APPDATA%\pip\目錄下,命名爲pip.ini便可(注意不要保存成pip,ini.txt)url

Linux等是$HOME/.config/pip/pip.conf,index-url行可不須要

[global]
trusted-host = pypi.tuna.tsinghua.edu.cn
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

 

2.4 驗證源成功切換且無報錯

我這裏以pip安裝faker庫進行驗證,本身隨便裝什麼都行

pip install faker

 

參考:

https://mirrors.tuna.tsinghua.edu.cn/help/pypi/

http://mirrors.ustc.edu.cn/help/pypi.html

https://superuser.com/questions/727924/pip-and-ssl-certificate-errors

相關文章
相關標籤/搜索