实用网站开源常用镜像站合集
如愿常用镜像站合集
前言
因受到 GFW
的影响,我们访问国外的镜像站容易下载慢且会被墙,所以就有大佬们搬运国外资源到国内设置镜像站供大家使用
Python-Pip包管理工具
1 2 3 4 5 6 7 8
| pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
pip config unset global.index-url
|
Node.js-npm-pnpm-cnpm包管理工具
1 2 3 4
| npm config set registry https://registry.npmmirror.com
npm config delete registry
|
GitHub-Releases加速下载
1 2 3
| https://ghproxy.net/ https://github.akams.cn/
|
加速克隆/GitHub文件下载加速
网站:https://ghproxy.net/
1 2 3 4
|
git clone --depth 1 https://githubfast.com/用户名/项目名.git git clone --depth 1 https://ghproxy.net/https://github.com/用户名/项目名.git
|
克隆私库加速
1 2 3 4
| git clone https://用户名:TOKEN@github.com/用户/项目名.git
git clone https://用户名:TOKEN@ghproxy.net/https://github.com/用户/项目名.git
|
Docker-hub访问
使用cloudflare搭建,可以用于访问和加速克隆容器
1
| https://docker.ruyuan.dpdns.org/
|