推荐, 使用 nvm 安装的 Node.js 和 npm, 不需要使用 sudo 命令来安装新包.
# 安装 nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
# 卸载 nvm
# rm -rf $NVM_DIR
# 并删除 ~/.bashrc 中相关变量
# 验证 nvm (若失败需重启终端)
nvm -h
# 配置国内源原 (可选)
# vim ~/.bashrc
export NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/node
export NVM_IOJS_ORG_MIRROR=https://npm.taobao.org/mirrors/iojs
# 安装当前版本
nvm install node
# 安装最新的 LTS 版
nvm install --lts
# 安装 14.x lst
nvm install 14 --lst
# 查看已安装的 node 版本
nvm ls
# 选择需要的版本 (只在当前 shell 生效)
nvm use 14
# 设置默认 node (新 shell 也生效)
nvm alias default lts/*
替代版本管理器 | Microsoft Learn
这里提到的 n
管理器比较特殊, 它需要先安装 node 和 npm 后才可以使用;
其他管理器都是类似 nvm 的用法;
https://github.com/nodesource/distributions/blob/master/README.md#installation-instructions
不推荐, 需要 sudo
# 安装 nodejs (18.x)
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt-get install -y nodejs
# 卸载
# sudo apt-get remove -y nodejs
npm config set registry https://registry.npm.taobao.org/
如果从源码安装, 可以避免使用 sudo
来安装包
如果从 nvm 安装, 会提示冲突
mkdir ~/.npm-global
npm config set prefix '~/.npm-global' # 生成 ~/.npmrc 文件
# 添加环境变量
export PATH=~/.npm-global/bin:$PATH
# 安装 n 模块
npm install -g n
# 配置安装目录, 避免 sudo (默认安装在 /usr/local/n)
mkdir -p $HOME/.n
# vim ~/.bashrc
export N_PREFIX=$HOME/.n
export PATH=$N_PREFIX/bin:$PATH