溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux下python pip install失敗的原因是什么

發(fā)布時間:2021-12-04 10:08:06 來源:億速云 閱讀:779 作者:柒染 欄目:網絡管理

今天就跟大家聊聊有關Linux下python pip install失敗的原因是什么,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

問題:

安裝包出現(xiàn)Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError

解決辦法:

pip install selectivesearch -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

系統(tǒng)默認使用源有問題,安裝失敗。

使用方法很簡單,直接 -i 加 url 即可!如下:

pip install pip -i 
pip install --upgrade  pip  -i   https://pypi.tuna.tsinghua.edu.cn/simple/

如果有untrust 報錯,可使用https開頭的網站,或使用命令:

pip install  selenium -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

如果想配置成默認的源,方法如下:
需要創(chuàng)建或修改配置文件(一般都是創(chuàng)建),
linux的文件在~/.pip/pip.conf,
windows在%HOMEPATH%\pip\pip.ini),

修改內容為:

[global]
index-url = http://pypi.douban.com/simple
[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 http://pypi.mirrors.ustc.edu.cn/simple --trusted-host pypi.mirrors.ustc.edu.cn" % package
os.system(command)

我用的ananconda,更改源方法:

# 看看當前的 cofig 是什么樣的
conda config --show
# 配置源
conda config --add channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'
conda config --set show_channel_urls yes   
# 刪除源
# conda config --remove channels '

看完上述內容,你們對Linux下python pip install失敗的原因是什么有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI