您好,登錄后才能下訂單哦!
pip 是一個安裝和管理 Python 包的工具,Python pip默認安裝模塊路徑是國外的服務器,本次我們將國外的服務器替換成國內的鏡像服務器,來更好的安裝Python的各種模塊。
常用國內鏡像:
(1)阿里云 http://mirrors.aliyun.com/pypi/simple/
(2)豆瓣http://pypi.douban.com/simple/
(3)清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
(4)中國科學技術大學 http://pypi.mirrors.ustc.edu.cn/simple/
(5)華中科技大學http://pypi.hustunique.com/
方法一:臨時使用
加參數-i和鏡像地址
例如:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple scrapy
方法二:永久修改
linux:
修改:pip.conf沒有創建一個文件夾及文件。文件夾要加".",表示是隱藏文件夾
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
windows:
直接在用戶目錄中創建一個pip目錄,如:c:\user\xx\pip,然后新建文件pip.ini,內容:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。