换源
npm 换源
使用npm下载包的时候有时候会出现下载速度非常慢的情况,原因是npm的默认仓库在国外,将仓库地址改为国内地址就行了。这里将源改为淘宝的镜像。
1、修改源地址为淘宝镜像
npm config set registry http://registry.npm.taobao.org/
2、修改源地址为官方地址
当我们要发布自己的包的时候,需要将源地址切换为官方地址:
npm config set registry https://registry.npmjs.org/
conda 换源
添加conda的清华镜像源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --set show_channel_urls yes
本站使用「CC BY-NC-SA」创作共享协议,转载请在文章明显位置注明作者及出处。