您好,登錄后才能下訂單哦!
pip install命令默認是用的是python官方源,由于一些客觀原因,連接速度很慢,甚至超時中斷,到時很多模塊安裝不上,甚是苦惱!
怎么辦?
使用國內鏡像源,將以下命令完成拷貝出來,粘貼至記事本中,保存為bat文件,雙擊執(zhí)行該批處理文件。
@echo off rem 聲明采用UTF-8編碼chcp 65001 echo \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* echo 自動設置pip安裝配置文件 echo \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* set pipFolder=\\pip\\ if exist %userprofile%%pipFolder% ( echo 目錄%userprofile%%pipFolder%已存在無需創(chuàng)建 ) else ( echo 創(chuàng)建%userprofile%%pipFolder% md %userprofile%%PiPFolder% ) cd %userprofile%%pipFolder% echo \[global\]>pip.ini ( echo timeout=60 echo index-url=http://pypi.douban.com/simple echo extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple/ echo \[install\] echo trusted-host=pypi.douban.com echo pypi.tuna.tsinghua.edu.cn echo timeout = 10 )>>pip.ini wmic ENVIRONMENT where "name='path' and username='<system>'" set VariableValue="%path%;%userprofile%%pipFolder%pip.ini"
然后再試試pip install命令,絕對飛一般的感覺。
另外給大家一些常用的pip國內源:
阿里云 https://mirrors.aliyun.com/pypi/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) https://pypi.douban.com/simple/
清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
中國科學技術大學 https://pypi.mirrors.ustc.edu.cn/simple/
使用方法
臨時生效
使用時加上參數(shù) -i
如:
pip install matplotlib -i https://mirrors.aliyun.com/pypi/simple/
永久生效
1.Linux下,修改 ~/.pip/pip.conf (沒有就創(chuàng)建一個文件夾及文件。文件夾要加“.”,表示是隱藏文件夾)
內容如下:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
2.windows下,直接在user目錄中創(chuàng)建一個pip目錄,如:C:\Users\xx\pip,新建文件pip.ini。內容同上。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。