Homebrew設定新源

2022-08-01 07:51:13 字數 1434 閱讀 9491

首先取消**

$ git config --global --unset https.proxy檢視當前映象

# brew.git映象源

git -c "$(brew --repo)" remote -v

# homebrew-core.git映象源

git -c "$(brew --repo homebrew/core)" remote -v

# homebrew-cask.git映象源

git -c "$(brew --repo homebrew/cask)" remote -v

3.更換映象

$ cd "$(brew --repo)"

$ git remote set-url origin

$ cd "$(brew --repo)/library/taps/homebrew/homebrew-core"

$ git remote set-url origin

# 替換成阿里巴巴的 homebrew-bottles 訪問 url:

# 若使用bash

$ echo 'export homebrew_bottle_domain=' >> ~/.bash_profile

$ source ~/.bash_profile

# 若使用zsh

$ echo 'export homebrew_bottle_domain='

$ source ~/.zshrc

更換後立即更新源

$ brew update

#需要等較長時間,如果報fail,請嘗試下列命令

$ brew doctor

$ brew update-reset

$ brew update

5.科大源

使用以下內容替換步驟3中的內容

# 對應倉庫位址

# bash

$ echo 'export homebrew_bottle_domain=' >> ~/.bash_profile

$ source ~/.bash_profile

#zsh

$ echo 'export homebrew_bottle_domain=' >> ~/.zshrc

$ source ~/.zshrc

$ brew update

6.恢復源

使用以下內容替換步驟3中的內容

# 對應倉庫位址

# 找到 ~/.bash_profile 或者 ~/.zshrc 中的homebrew_bottle_domain 一行刪除

$ brew update

更換Homebrew的更新源

更換homebrew的更新源的教程,在網上數不勝數,然內容大多大同小異且述之不詳,且未提及版本上的差異。故作此文,以正視聽。在閱讀此文之前,你需要了解homebrew和git並安裝了它們。並且對於homebrew官方更新源的速度趕到不滿且不打算利用其它手段解決 如vpn 或者看了其它文章感到不求甚解...

Ubuntu更新源設定

在編輯之前做個備份 sudo cp etc apt source.list etc apt sources.list backup 編輯源位址 sudo gedit etc apt sources.list 更新命令 sudo apt get update sudo apt get dist upg...

設定Ubuntu更新源

1.首先備份ubuntu源列表 sudo cp etc apt sources.list etc apt sources.list.backup 備份下當前的源列表 2.修改更新源 sudo vim etc apt sources.list 3.刪除更新源中的資料 300dd 上面命令的意思是刪除游...