返回到文章

采纳

编辑于 2年前

Mac二进制安装nodejs

nodeJs mac

下载

Node.js 历史版本下载地址:https://nodejs.org/dist/

Darwin是OS X的核心操作系统,所以mac的要选含Darwin的。

解压

将下载好的包解压到/Library/NodeJs/

你也可以自定义到其他地方。

配置

编辑~/.base_profile或者~/.zshrc,将配置写入:

export NODEJS_HOME=/Library/NodeJs/node-v11.9.0-darwin-x64
export PATH=$NODEJS_HOME/bin:$PATH

生效:

source ~/.base_profile
source ~/.zshrc

验证:

node -v

其他安装方式

homebrew安装指定版本node