您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關centos6.5安裝python3.7.1之后無法使用pip怎么辦的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
編譯安裝全是坑……
第一遍裝完無法使用pip,報錯找不到ssl模塊。各種報錯:
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
。。。
configure: error: Invalid --with-openssl value
。。。
結果各種搗鼓。
1、注意cetos6.5自帶的openssl版本是1.0.1,需要升級到1.0.2,升級完之后用openssl version檢查一下;
2、提前安裝好各種依賴包。yum install openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel gcc gcc-c++ libffi-devel
3、./configure --prefix=/usr/local/python 之后,需要進到Modules里,修改Setup如下(一般升級完openssl,openssl默認就在/usr/local/ssl文件夾了):
# Socket module helper for socket(2) _socket socketmodule.c # Socket module helper for SSL support; you must comment out the other # socket line above, and possibly edit the SSL variable: SSL=/usr/local/ssl _ssl _ssl.c \ -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \ -L$(SSL)/lib -lssl -lcrypto
把這5行的注釋去掉。再進行make && make install,應該就能成功了。如果以前編譯失敗,記得把原來的Makefile文件刪除掉。
感謝各位的閱讀!關于“centos6.5安裝python3.7.1之后無法使用pip怎么辦”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。