pip下載python庫太慢怎麼辦

換源。django

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

源地址有不少,例如:阿里雲

清華
https://pypi.tuna.tsinghua.edu.cn/simple/
中科大
https://pypi.mirrors.ustc.edu.cn/simple/
阿里雲
https://mirrors.aliyun.com/pypi/simple/
豆瓣
https://pypi.douban.com/simple/

也能夠一勞永逸。url

pip install pip -U
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

說明:
(1)「pip install pip -U」是用於執行升級pip的命令;
(2)若pip爲10.0.0以上版本,則能夠進行升級;
(3)查看pip版本的命令:pip -Vcode

相關文章
相關標籤/搜索