一、安裝brew
終端上執行 /usr/bin/ruby -e "$(curl -fssl "
二、安裝nodejs
執行brew install node 即可,但是這樣安裝的node是最新node,本人安裝後是node6.x,node6.x對一些就模組已經不支援了,比如graceful-fs,導致安裝一些包的時候,無法執行,就會出現類似 (node:7844) fs: re-evaluating native module sources is not supported. if you are using the graceful-fs module, please update it to a more recent version 的提示。
三、安裝指定版本的node
舊版的brew,可以通過brew versions nodejs,執行後會提示 error: the `versions` command is no longer supported. brew versions已廢棄掉了。
1、需要安裝homebrew-version
brew tap homebrew/versions
2、檢視可安裝的node版本
brew install homebrew/versions/node
3、選擇按乙個node的版本
brew install homebrew/versions/node5
這樣就可以成功安裝node5.x版本
mac通過brew安裝nvm
安裝前,需確保沒有node環境。安裝命令 brew install nvm 安裝完成後需要在 bash profile 檔案新增下面該行,配置環境變數 source brew prefix nvm nvm.sh source bash profile nvm安裝node步驟,以10.15.3為例 n...
Mac通過Brew安裝zookeeper
homebrew 是macos上的包管理工具,可以簡化 macos 和 linux 作業系統上軟體的安裝 bin bash c curl fssl git c brew repo remote set url origin替換homebrew core git c brew repo homebre...
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 ...