为有牺牲多壮志,敢教日月换新天。

Mac系统安装Node.js及配置环境变量

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤博客园地址:为敢技术(https://www.cnblogs.com/strengthen/ 
➤GitHub地址:https://github.com/strengthen
➤原文地址:https://www.cnblogs.com/strengthen/p/18530322
➤如果链接不是为敢技术的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

1、官网下载 安装包

Node.js官网:https://nodejs.org/en ,点击下载【Download Node.js】

2、双击安装包【node-v22.11.0.pkg】,按照默认步骤进行安装。

3、验证版本

// nmp版本:
npm -v
// node版本:
node -v

4、配置环境变量

 终端输入:

sudo vim .bash_profile

Mac的node,npm可执行文件都在/usr/local/bin/目录下,添加一行:

export PATH=$PATH:/usr/local/bin

按【esc】,输入:

:wq

保存并退出。输入:

  • Window 系统: 关闭当前窗口,重新开启一个窗口。
  • Linux 系统或 Mac 系统: 在命令行中执行刷新命令:当shell为bash时执行source ~/.bashrc 或者 . ~/.bashrc ;当shell为zsh时执行source ~/.zshrc 或者 . ~/.zshrc 。
source ~/.bash_profile

退出终端,再打开终端,输入node,进入node环境。

 

posted @ 2024-11-06 15:39  为敢技术  阅读(1)  评论(0编辑  收藏  举报