Mac關於brew的問題

2021-10-13 10:16:30 字數 1677 閱讀 5838

此文章只針對遇到相應步驟的問題,並非萬能,其他文章有更好的解決方案

先看下命令:

control-c

中止當前任務,程序被 kill 掉;

control-z

將當前任務掛起,放到後台;

error: another active homebrew update process is already in progress.

please wait

for it to finish or terminate it to continue.

輸入命令:rm -rf /usr/local/var/homebrew/locks/

可以發現沒用,直接ps aux | grep ruby檢視程序,輸入kill -9 pid殺死程序;

再次執行brew update還是沒用;

沒辦法,只能解除安裝:

輸入解除安裝命令

/usr/bin/ruby -e "$(

curl -fssl

"

很明顯,又報錯:

curl: (7) failed to connect to raw.githubusercontent.com port 443: connection refused
首先想到是新增**,不過又報(curl: (56) proxy connect aborted)錯誤;

解決方法:

1.開啟**

2.輸入raw.githubusercontent.com, 檢視對應ip;

3.複製對應的ip到自己電腦的hosts檔案裡面;(有許可權限制,複製新檔案改名覆蓋hosts)

4.hosts檔案路徑: /ect/hosts

5.替換方式用命令列輸入: vim /etc/hosts

6.裡面加入: raw.githubusercontent.com

7.最後wq退出

再次執行,即可解除安裝,如果中間有警告可忽略,解除安裝完刪除安裝目錄;

好了,重新安裝:

/usr/bin/ruby -e "$(

curl -fssl

"

2、修改brew_repo=""

3、輸入/bin/bash install.sh

很遺憾,這次沒報錯,但是卡住了:

cloning into 『/opt/homebrew/library/taps/homebrew/homebrew-core『
解決方法:

cd /opt/homebrew/library/taps/

mkdir homebrew

cd homebrew

git clone

再次輸入brew update,執行成功(如果出現許可權問題,給目錄增加許可權)

更換映象:

cd "$(brew --repo)"

git remote set-url origin

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

git remote set-url origin

Mac 下 brew安裝慢的問題

brew預設源使用的是github,可以設定環境變數達到切換源的效果,見官網 export homebrew brew git remote put your git mirror of homebrew brew here export homebrew core git remote put y...

Mac使用(一)Mac安裝brew

brew homebrew mac osx上的軟體包管理工具,類似linux中yum,能在mac中方便安裝軟體或者解除安裝軟體,brew 的官方 在官方 對brew的用法進行了詳細的描述 安裝方法 在mac中開啟termal 輸入命令 安裝完成 檢視幫助 使用brew查詢軟體 brew search...

Mac下安裝brew 使用brew安裝gdb

安裝命令如下 curl lssf sudo tar xvz c usr local strip 1 2014 09 02 親試 當brew安裝成功後,就可以隨意安裝自己想要的軟體了,例如wget,命令如下 sudo brew install wget 安裝gdb sudo brew install ...