Nvidia Jetson TX2開發板學習歷程( 2 )- 更換pip源,提升下載速度

經過將pip的源更換爲國內源,來提升下載速度,這也將成爲從此學習過程下載Python包的基礎,建議前期必定要完成!linux

知名的國內源

清華:https://pypi.tuna.tsinghua.edu.cn/simple
阿里雲:http://mirrors.aliyun.com/pypi/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
華中理工大學:http://pypi.hustunique.com/
山東理工大學:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/ubuntu

須要注意的是新版的ubuntu要求使用http源。ide

使用方法

臨時修改

使用pip install的 -i 命令進行設置,格式以下:學習

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

例如:阿里雲

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

永久修改

經過編輯pip的配置文件進行設置,方法以下:url

在linux中,修改 ~/.pip/pip.config(若是沒有就自行建立,格式和前面的必須徹底一致)。code

添加內容以下:pyspider

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com

添加其餘源,格式與上面的相似依次類推便可。ip

相關文章
相關標籤/搜索