关于自动续费功能当前可能无法正常使用的公告
重大通知!用户您好,以下内容请务必知晓!

尊敬的用户,我们发现自动续费功能当前可能无法正常使用,这可能会导致您的服务无法按时续费。为确保服务的连续性,请您手动进行续费操作。感谢您的理解与配合。

关闭
文档首页> 通用教程> 常用系统、软件(包)国内下载镜像大全

常用系统、软件(包)国内下载镜像大全

发布时间:2025-02-15 18:20        更新时间:2025-02-15 19:00

1. Python

  • 官方镜像源:华为云开源镜像站
    Python 镜像
    打开页面后选择对应版本的安装包进行下载。

2. VirtualBox


3. Docker

  • 镜像源:清华大学开源软件镜像站
    下载地址:Docker 镜像

4. Conda


5. Qt


6. Git


7. FFMpeg


8. NodeJS

  • 安装方式
    • 手动安装:访问 Node.js 镜像 下载对应版本。
    • 使用 nvm
      NVM_NODEJS_ORG_MIRROR=https://mirrors.huaweicloud.com/nodejs/ nvm install <version>
    • 使用 nvmw(Windows):
      set "NVMW_NODEJS_ORG_MIRROR=https://mirrors.huaweicloud.com/nodejs/"
      nvmw install node-v0.12.2
  • 设置 npm 源
    npm config set registry https://mirrors.huaweicloud.com/repository/npm/

9. 系统镜像


10. 软件包平台配置

  • APT(Ubuntu/Debian)
    • 清华大学源
      sudo cp -a /etc/apt/sources.list /etc/apt/sources.list.bak
      sudo sed -i "s@http://.*archive.ubuntu.com@http://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list
      sudo sed -i "s@http://.*security.ubuntu.com@http://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list
      sudo apt-get update
    • 华为云源
      sudo sed -i "s@http://.*archive.ubuntu.com@http://mirrors.huaweicloud.com@g" /etc/apt/sources.list
      sudo apt-get update
  • YUM(CentOS)
    sed -e 's|^mirrorlist=|#mirrorlist=|g' \
        -e 's|^#baseurl=http://mirror.centos.org/|baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos|g' \
        -i.bak \
        /etc/yum.repos.d/CentOS-*.repo
    yum makecache
  • PyPI(Python 包管理)
    • 临时使用
      pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
    • 设置默认源
      python -m pip install --upgrade pip
      pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple