配置各种库的镜像源
各种镜像源配置
由于网络的限制,不少镜像库的访问速度极慢,导致例如 conda、apt 等命令的安装速度极慢,同时各个库的地址不统一,不能一劳永逸的解决问题,因此突然想到应该收集收集以便以后用到。阿里镜像源地址,包含较为全面的镜像源 https://developer.aliyun.com/mirror/
docker
使用源:阿里
docker 需要用到官方镜像,所以需要配置。但这个源配置比较特殊,源地址不是通用的。首先登录阿里开发者帐户 中查看你的您的专属加速器地址,如图:
获取到你自己的专属地址后输入以下命令:
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
"r...
ubuntu 相关
ubuntu
包含从ubuntu学到的linux相关知识与踩过的坑,不停更新中
目录
apt-get update 404 error
系统环境文件
apt-get-update-404
在使用命令 sudo apt-get update 时,终端出现404错误,之前都直接忽略了,但是今天在安装Jekyll时发现报错:
+ rvm_error 'There has been an error while updating your system using `apt-get`.
It seems that there are some 404 Not Found errors for repositories listed in:
/etc/apt/sourc...
markdown
markdown 笔记
记录一些markdown的常用语法,
斜体和粗体
输入:_斜体_
输出:斜体
输入:**粗体**
输出:粗体
强调
cc比较`帅`
cc比较帅
标题
输入:
### title1
#### title2
##### title3
输出:
title1
title2
title3
链接
输入:[kouyt5](https://www.github.com/kouyt5)
输出:kouyt5
输入:[全局链接][link]
[link]:www.google.com
输出:全局链接
记得中间至少隔一行
图片
输入:![tiger](https://upload.wikimedia.org/wikipedia/commons/5/56/Tige...
共计 11 篇文章,2 页。