這次帶給大家如何實作Mac內部透過brew安裝指定版本nodejs,Mac內部透過brew安裝指定版本nodejs的注意事項有哪些,以下就是實戰案例,一起來看一下。
一、安裝brew
在終端機上執行/usr/bin/ruby -e "$(curl -fsSL https: //raw.githubusercontent.com/Homebrew/install/master/install)"
二、安裝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版本
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是如何實作Mac內透過brew安裝指定版本nodejs的詳細內容。更多資訊請關注PHP中文網其他相關文章!