各种镜像源配置
由于网络的限制,不少镜像库的访问速度极慢,导致例如 conda
、apt
等命令的安装速度极慢,同时各个库的地址不统一,不能一劳永逸的解决问题,因此突然想到应该收集收集以便以后用到。阿里镜像源地址,包含较为全面的镜像源 https://developer.aliyun.com/mirror/
docker
使用源:阿里
docker
需要用到官方镜像,所以需要配置。但这个源配置比较特殊,源地址不是通用的。首先登录阿里开发者帐户 中查看你的您的专属加速器地址,如图:
获取到你自己的专属地址后输入以下命令:
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://vr878luf.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
如下图:
各种工具代理配置
git
git config --global https.proxy https://127.0.0.1:1080
Dockerfile中支持apt-get使用代理
RUN echo "Acquire::http::Proxy \"http://192.83.110.77:1081\";" > /etc/apt/apt.conf
wget
wget -e "http_proxy=192.83.110.77:1081" www.google.com
curl
curl --proxy "http://192.83.110.77:1081" xxx.tar
pip豆瓣源
pip config set global.index-url https://pypi.douban.com/simple/