常用镜像链接

1.清华源中一些常用的镜像链接:

操作系统镜像

编程语言包

容器镜像

大数据与数据库

其他常用资源


3. 使用方法

以下是常见工具和系统的清华源配置方法:

Ubuntu 换源

  1. 备份原有源列表:

    sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
  2. 编辑源列表:

    sudo nano /etc/apt/sources.list
  3. 替换为清华源:

    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
    deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
  4. 更新软件包列表:

    sudo apt update

CentOS 换源

  1. 备份原有源:

    sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
  2. 下载清华源配置文件:

    sudo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.tuna.tsinghua.edu.cn/help/centos/CentOS-Base.repo
  3. 更新缓存:

    sudo yum makecache

Python PyPI 换源

  1. 临时使用:

    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
  2. 永久配置:

    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

Docker 换源

  1. 编辑 Docker 配置文件:

    sudo nano /etc/docker/daemon.json
  2. 添加清华源:

    {
      "registry-mirrors": ["https://docker.mirrors.tuna.tsinghua.edu.cn"]
    }
  3. 重启 Docker:

    sudo systemctl restart docker

2. 阿里云开源官网

云计算与容器技术

大数据与数据库

人工智能与机器学习

中间件与开发工具

前端与移动开发


3. 开源社区与活动


4. 如何使用阿里云开源项目

下载与安装

  • 通过 GitHub 下载项目源码:

    git clone https://github.com/alibaba/<project-name>.git