常用包管理换源
众所周知,国内访问国外的服务器速度很慢,所以我们需要将一些常用的包管理器的源换成国内的镜像源,以提高下载速度。
这里记录一些常用包管理器换源的方法,以备随时查阅。
npm
淘宝npm镜像 http://registry.npm.taobao.org/
cnpmjs镜像 http://r.cnpmjs.org/
临时换源
npm --registry https://registry.npm.taobao.org install express
永久换源
npm config set registry https://registry.npm.taobao.org
取消换源
npm config set registry https://registry.npmjs.org
pip
-
清华大学开源镜像站
https://pypi.tuna.tsinghua.edu.cn/simple
-
阿里开源镜像站
https://mirrors.aliyun.com/pypi/simple/
临时换源
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
永久换源
-
一键换源
需要 pip 版本 > 10.0.0
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
-
手动换源
编辑
~/.pip/pip.conf
(不存在就创建)[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn
apt
- 一键脚本 (By Skyone)
sudo bash -c "$(curl -fsSL https://tc.skyone.host/shell/apt-mirrors)"