brew 切换国内的源】的更多相关文章

切换到国内源 # 替换brew.git: cd "$(brew --repo)" # 中国科大: git remote set-url origin https://mirrors.ustc.edu.cn/brew.git # 清华大学: git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git # 替换homebrew-core.git: cd "$(brew -…
pip install Flask -i http://pypi.douban.com/simple ~/.pip/pip.conf The documentation says the config file for Windows is %HOME%\pip\pip.ini, but pip actually looks for %APPDATA%\pip\pip.ini. It only uses %HOME% if %APPDATA% isn't set.   On Windows pi…
切换到国内源 # 替换brew.git: $ cd "$(brew --repo)" # 中国科大: $ git remote set-url origin https://mirrors.ustc.edu.cn/brew.git # 清华大学: $ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git # 替换homebrew-core.git: $ cd "…
docker切换默认镜像源   基于 debian8 默认安装的 docker 镜像源是在国外,pull 镜像的时候奇慢无比,需要自己手动切换成国内的镜像源. 1. 修改配置文件 docker 默认的配置文件是 `/etc/default/docker`,如果此目录下不存在 docker 文件,可以自己手动创建一个,将文件中添加内容: DOCKER_OPTS=" --registry-mirror=https://[xxxxx].mirror.aliyuncs.com" 上述代码中的地…
前期准备 1.VMware16(转载:下载安装流程:(https://www.bilibili.com/read/cv9694457)) 2.Ubuntu22.04----iso镜像文件(下载地址:(https://cn.ubuntu.com/download/desktop)) 3.SecureCRT(转载:下载安装流程:(https://www.cnblogs.com/hello_word/p/11608638.html)) Ubuntu安装流程 打开VMware虚拟机,在主页找到"创建新的…
树莓派自带的软件源是 deb http://mirrordirector.raspbian.org/raspbian/ wheezy main contrib non-free rpi 由于网站在国外,导致下载速度非常慢,因此需要修改为国内镜像站点即可. Raspberry Pi(树莓派)国内软件源: 修改配置文件 pi@raspberrypi ~ $ vi /etc/apt/sources.list deb http://mirrors.neusoft.edu.cn/raspbian/rasp…
备份本地yum源文件 cd /etc/yum.repo.d/ mv CentOS-Base.repo CentOS-Base.repo.bakeup 下载国内yum源 阿里云yum源 wget http://mirrors.aliyun.com/repo/Centos-7.repo 163(网易)yum源 wget http://mirrors.163.com/.help/CentOS7-Base-16.repo 更新yun源 mv Centos-7.repo CentOS-Base.repo…
BackBox是基于Ubuntu的Linux发行版,因此,我们可以使用Ubuntu的更新源作为BackBox的更新源. 1.查看系统版本信息: 输入: uname -a 显示计算机及操作系统的有关信息,在回显里我们可以看到: Linux master 4.10.0-38-generic #42~16.04.1-Ubuntu SMP Tue Oct 10 16:30:51 UTC 2017 i686 i686 i686 GNU/Linux 这表明我们现在使用的Linux内核是Ubuntu 另外我们…
官方docker hub访问非常的慢,安装之后最好先切换国内镜像: 执行: curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://ef017c13.m.daocloud.io 然后再重启: systemctl restart docker…
1.删除默认的源 helm repo remove stable 2.增加新的国内镜像源 helm repo add stable https://burdenbear.github.io/kube-charts-mirror/ 3.查看helm源添加情况 helm repo list 4.搜索测试 helm search mysql 5.参考:https://github.com/BurdenBear/kube-charts-mirror…