pip更新失敗,超時的解決方法

pip源的更改:

pip的默認源在國外,pip install some_packages特別慢,常常會超時,致使安裝失敗;python

pip 更換爲國內的鏡像linux

一:使用方法:

  ①臨時使用:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 庫名 #清華的大學的鏡像

  ②永久修改: 

(1)linux:
  修改 ~/.pip/pip.conf (沒有就建立一個), 內容以下:windows

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

(2)windows:
  直接在user目錄中建立一個pip目錄,如:C:\Users\xx\pip,新建文件pip.ini,內容以下阿里雲

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

二:經常使用鏡像:

  阿里雲 http://mirrors.aliyun.com/pypi/simple/
  中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
  豆瓣(douban) http://pypi.douban.com/simple/
  清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
  中國科學技術大學 http://pypi.mirrors.ustc.edu.cn/simple/url

三:下載超時

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --default-timeout=100 庫名

  設置超時時間spa

四: 不使用國內鏡像

  設置超時時間: pip --default-timeout=600 install **code

  
  pip更新: python -m pip install --upgrade pip
  
  指定pip更新超時時間爲35秒: python -m pip --default-timeout=35 install --upgrade pip
blog

相關文章
相關標籤/搜索