0%

使用国内资源(备忘)

使用阿里云镜像安装Docker-CE

docker.com越来越难访问了

  1. 安装必要工具

    1
    $ sudo apt-get update sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
  2. 安装阿里云的GPG证书

    1
    $ curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
  3. 添加软件源

    1
    $ add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
  4. 拉取更新

    1
    $ apt update
  5. 安装docker-ce

    1
    $ apt-get -y install docker-ce

使用阿里云的pip源

  1. 安装pip

    1
    2
    $ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
    $ python get-pip.py
  2. 修改pip源为阿里云(永久修改)

    在用户根目录创建 .pip/pip.conf

    1
    2
    3
    4
    5
    [global]
    index-url = http://mirrors.aliyun.com/pypi/simple

    [install]
    trusted-host=mirrors.aliyun.com

MAC使用清华homebrew源

可直接访问清华大学开源软件镜像站获取

  • 替换现有的git

    1
    2
    3
    4
    5
    6
    7
    $ cd "$(brew --repo)"
    $ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git

    $ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
    $ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git

    $ brew update