Mac下通過brew安裝指定版本的nodejs

2022-08-16 23:06:13 字數 524 閱讀 9522

ps:copy 別人的,僅僅是存檔

一、安裝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

1、需要安裝homebrew-version 安裝nvm

brew install nvm

2、檢視可安裝的node版本

nvm use --delete-prefix version

Mac下如何通過brew安裝指定版本的nodejs

一 安裝brew 終端上執行 usr bin ruby e curl fssl 二 安裝nodejs 執行brew install node 即可,但是這樣安裝的node是最新node,本人安裝後是node6.x,node6.x對一些就模組已經不支援了,比如graceful fs,導致安裝一些包的時...

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...