合集-软件镜像

优秀站点

中规中矩的站点

资源较少的站点

搜狐

操作系统镜像

nas 或软路由用

Proxmox Virtual Environment

桌面操作系统

国产

国外

服务器 OS

  • 国产
    • Anolis OS 兼容 CentOS 软件生态,兼容国际主流 Linux 厂商发行版
    • openEuler 由开放原子开源基金会孵化的全场景开源操作系统项目
  • 国外

CDN 加速服务

常用软件镜像

git for windows

TortoiseGit

node 镜像

maven 镜像

gradle 镜像

Python 镜像

软件仓库源

Flathub 镜像

当您请求镜像中的资源时, 如果文件没有被镜像服务器缓存,我们会将您重定向回原站,并在后台进行缓存。 目前镜像服务器上已经预先缓存了所有 Flathub 软件的分支。

使用方法:

1
sudo flatpak remote-modify flathub --url=https://mirror.sjtu.edu.cn/flathub

PyPI 镜像

pip 临时使用

1
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

注意,simple 不能少, 是 https 而不是 http

设为默认

升级 pip 到最新的版本 (>=10.0.0) 后进行配置:

1
2
python -m pip install --upgrade pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

npmmirror 镜像站

你可以使用我们定制的 cnpm 命令行工具代替默认的 npm
cnpm 支持除了写相关操作外的所有命令,例如 install、info、view 等。

1
npm install -g cnpm --registry=https://registry.npmmirror.com

或者你直接通过添加 npm 参数 alias 一个新命令:

1
alias cnpm="npm --registry=https://registry.npmmirror.com \ --cache=$HOME/.npm/.cache/cnpm \ --disturl=https://npmmirror.com/mirrors/node \ --userconfig=$HOME/.cnpmrc"

当然,你也可以使用任意你心仪的命令行工具,只要配置 registry 即可

1
npm config set registry https://registry.npmmirror.com