X  
登录

还没有账号? 立即注册

忘记密码?
登陆
X  
注册

已经有账号? 马上登陆

获取验证码
重新获取(60s)
立即注册
统计
  • 建站日期:22-09:01
  • 文章总数:80 篇
  • 评论总数:2 条
  • 分类总数:8 个
  • 最后更新:2024年07月05日
文章 技术教程

一站配齐所有国内镜像,第三方库安装提升 10 倍

首页 技术教程 正文


开发过程中,我们经常会用到各种各样的包管理工具,几乎每种包管理工具缺省设置都是从国外服务器下载相应的软件安装包,或者下载很慢,或者干脆无法下载。以下列出我常用的所有国内镜像,方便有类似需求的同学参考 (不定期更新,感觉有用的同学请注意收藏) 。

我平常用的 shell 是 fish ,所以下面的语法全都是 fish 相关的 set \-x ,如果是用缺省的 bash ,可以替换成 export 命令。

操作系统相关

brew国内镜像

cd /usr/local/Homebrew
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
cd /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
cd /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git\# brew国内镜像
set -x HOMEBREW\_BOTTLE\_DOMAIN https://mirrors.ustc.edu.cn/homebrew-bottles

Javascript相关

npm国内镜像

npm config set registry https://registry.npm.taobao.org/

yarn国内镜像

yarn config set registry https://registry.npm.taobao.org/

pnpm国内镜像

pnpm config set registry https://registry.npm.taobao.org/

electron国内镜像

set -x ELECTRON\_MIRROR http://npm.taobao.org/mirrors/electron/

node-sass国内镜像

set -x SASS\_BINARY\_SITE https://npm.taobao.org/mirrors/node-sass/

fsevents国内镜像

set -x FSE\_BINARY\_HOST\_MIRROR https://npm.taobao.org/mirrors/fsevents/

更多

更多设置,或者懒得一个一个设置的同学也可以参考这里:

https://gist.github.com/hetyk...

把这些代码下载到一个shell脚本里,一键添加完成。

Python相关

pip国内镜像

\$ cat \~/.pip/pip.conf
\[global\]
index\-url=https://pypi.tuna.tsinghua.edu.cn/simple

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/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/menpo/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --set show\_channel\_urls yes

其它语言

flutter国内镜像

set -x PUB\_HOSTED\_URL https://pub.flutter-io.cn
set -x FLUTTER\_STORAGE\_BASE\_URL https://storage.flutter-io.cn


版权说明
文章采用: 《 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权。
版权声明:未标注转载均为本站原创,转载时请以链接形式注明文章出处。如有侵权、不妥之处,请联系站长删除。敬请谅解!

-- 展开阅读全文 --
这篇文章最后更新于 2023年04月28日,已超过 XXX 年没有更新,如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢!
打赏&Support - 请我们来一杯咖啡
« 上一篇

发表评论

个人信息

梦幻书涯
星际导航

热门文章

1
2
3
4