Linux下python pip install失敗
問題:
安裝包出現Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError
解決辦法:
pip install selectivesearch -i --trusted-host pypi.douban.com
系統預設使用源有問題,安裝失敗。
可以一些國內的pip源,如下:
阿里雲
中國科技大學
豆瓣(douban)
清華大學
中國科學技術大學
使用方法很簡單,直接 -i 加 url 即可!如下:
pip install pip -i pip install --upgrade pip -i
如果有untrust 報錯,可使用https開頭的網站,或使用命令:
pip install selenium -i --trusted-host pypi.douban.com
如果想配置成預設的源,方法如下:
需要建立或修改配置檔案(一般都是建立),
linux的檔案在~/.pip/pip.conf,
windows在%HOMEPATH%\pip\pip.ini),
修改內容為:
[global] index-url = [install] trusted-host=pypi.douban.com
這樣在使用pip來安裝時,會預設呼叫該映象。
臨時使用其他源安裝軟體包的python指令碼如下:
#!/usr/bin/python
import
os
package
=
raw_input
(
"Please input the package which you want to install!\n"
)
command
=
"pip install %s -i --trusted-host pypi.mirrors.ustc.edu.cn"
%
package
os.system(command)
我用的ananconda,更改源方法:
# 看看當前的 cofig 是什麼樣的 conda config --show # 配置源 conda config --add channels ' conda config --set show_channel_urls yes # 刪除源 # conda config --remove channels '
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27785870/viewspace-2213776/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 使用pip install mysqlclient命令安裝mysqlclient失敗?MySqlclient
- python中pip更新失敗怎麼辦Python
- 如何解決CentOS下使用yum安裝python-pip失敗CentOSPython
- pip安裝模組失敗
- pip 安裝 selenium 失敗
- python用install失敗怎麼解決Python
- 記一次talib包pip下載失敗
- npm install失敗解決方法NPM
- [Python] Linux下python installPythonLinux
- Python:conda install 和pip install的區別Python
- python+selenium環境搭建,pip安裝selenium失敗Python
- npm install 失敗解決辦法NPM
- npm install失敗解決辦法NPM
- pip install METIS
- 解決Linux下AES解密失敗Linux解密
- (原創)下載安裝Python第三方包庫pip安裝失敗總結Python
- Linux下python2.7安裝pipLinuxPython
- npm install安裝失敗解決方法NPM
- 關於npm install失敗的解決方法NPM
- brew install mac安裝失敗的問題Mac
- 對於npm install失敗的解決方法:NPM
- Arch linux下安裝bochs失敗解決Linux
- pip install uwsgi==2.0.23
- pip install 提示:Could not install packages due to an EnvironmentErrorPackageError
- windows下pip install xx 遇到的 ConnectionResetError問題WindowsError
- Linux 下安裝pipLinux
- python 編譯失敗Python編譯
- pip install 改下載源方式
- pip安裝selenium一直失敗解決辦法
- npm install過程失敗的幾種處理方法NPM
- Linux下root密碼正確卻登陸失敗Linux密碼
- linux smartd啟動失敗Linux
- pip install scrapy報錯:error: UnableError
- Linux解決MySQL-python安裝失敗問題LinuxMySqlPython
- python安裝失敗,改下源Python
- linux下install vmware toolsLinux
- Linux靜態Ip配置失敗Linux
- Android sdk 下載/更新失敗Android