1 Mac安裝Homebrew及切換映象源

2021-09-02 23:29:44 字數 3221 閱讀 1193

mac安裝homebrew

一、homebrew簡介及安裝

homebrewmacos x上的軟體安裝管理工具,類似於apt-get或者yum

擁有安裝、解除安裝、更新、檢視、搜尋等很多使用功能。簡單的一條指令,就可以實現包管理,而不用你關心各種依賴和檔案路徑等情況,十分方便和快捷。

mac上安裝homebrew參見homebrew的官網其實,只需要在終端輸入一條簡單的命令,然後等待就好。(或者參見這篇博文:

二、homebrew的簡單使用

1、安裝任意包

brew install 
2、解除安裝任意包

brew uninstall 
3、查詢可用包

brew search 
4、檢視已安裝包列表

brew list
5、檢視任意包資訊

brew info 
6、更新homebrew版本

brew update
7、homebrew幫助資訊

brew -h
三、homebrew切換國內映象源

1、切換中科大源

(1)替換預設源

# 替換 brew.git

cd "$(brew --repo)"

git remote set-url origin

# 替換 homebrew-core.git

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

git remote set-url origin

cdbrew update

(2)替換homebrew bottles

homebrew bottleshomebrew提供的二進位制**包,目前映象站收錄了以下倉庫:

homebrew/homebrew-core

homebrew/homebrew-dupes

homebrew/homebrew-games

homebrew/homebrew-gui

homebrew/homebrew-python

homebrew/homebrew-php

homebrew/homebrew-science

homebrew/homebrew-versions

homebrew/homebrew-x11

對於bash使用者:

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

source ~/.bash_profile

對於zsh使用者:

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

source ~/.zshrc

2、切換清華源

(1)替換預設源

# 替換 brew.git

cd "$(brew --repo)"

git remote set-url origin

# 替換 homebrew-core.git

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

git remote set-url origin

cdbrew update

# 使用homebrew-science

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

git remote set-url origin

# 或者使用homebrew-python

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

git remote set-url origin

cdbrew update

(2)替換homebrew bottles

對於bash使用者:

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

source ~/.bash_profile

對於zsh使用者:

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

source ~/.zshrc

3、在中科大源或清華源失效或宕機時可以切換回官方源

(1)重置brew.git

cd "$(brew --repo)"

git remote set-url origin

(2)重置homebrew-core.git

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

git remote set-url origin

cdbrew update

(3)注釋掉bash配置檔案裡的有關homebrew bottles即可恢復官方源。 重啟bash或讓bash重讀配置檔案。

Mac安裝Homebrew及使用

參考1 參考2 簡介 brew 又叫homebrew,是mac osx上的軟體包管理工具,能在mac中方便的安裝軟體或者解除安裝軟體,只需要乙個命令,非常方便。brew類似ubuntu系統下的apt get的功能 ruby e curl fssl 一般情況是這麼操作的 1 通過brew instal...

環境 M1 Mac 安裝Homebrew

序言 近期入手了m1 macbook air 本來買前只是為了修圖用途,買後發現輕薄不燙,續航5 6個小時問題不大 我看好像vscode是吃電大戶 於是還是決定搞一些基本的開發配置。其實像git這些都是屬於安裝很簡單的,按照官方的mac安裝指南,只需要執行 brew install git 即可,那...

Mac 安裝home brew出錯

mark翻車經過 鹿晗公開戀情了。hhhh跟我沒有關係,老薛got7 好!安裝homebrew的時候翻車了。原因大概是不懂mac得.git config的許可權,強行回憶了一波作業系統裡許可權管理的問題,解決了。翻車現場大概是這樣 在terminal裡輸出 usr bin ruby e curl f...