1. 程式人生 > >解決mac安裝homebrew後報錯-bash: brew: command not found

解決mac安裝homebrew後報錯-bash: brew: command not found

參照官網上很簡單的一句安裝命令,
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

安裝完畢後,發現使用brew命令,卻總是提示:-bash: brew: command not found

於是懷疑安裝過程出現問題,打算重灌,重灌卻報:
please ask wherever you got this link from to update it to the above
琢磨了一番還是無解,於是仔細找了各種版本解決方式,都無果。終於在
http://stackoverflow.com/questions/14288682/error-installing-homebrew-brew-command-not-found
找到解決方式。其實解決這個問題真的很簡單。如下:
sudo vim .bash_profile
新增:
export PATH=/usr/local/bin:$PATH
儲存,source .bash_profile使配置修改生效。
再次使用brew 命令就ok了。