温馨提示×

centos中nodejs如何更新

小樊
52
2025-10-11 01:17:37
栏目: 编程语言

在 CentOS 系统中,更新 Node.js 的方法有以下几种:

  1. 使用 NodeSource Repository 更新 Node.js

NodeSource 是一个提供 Node.js 二进制分发版的第三方仓库。要使用 NodeSource 更新 Node.js,请按照以下步骤操作:

a. 首先,删除已安装的 Node.js(如果有的话):

sudo yum remove nodejs

b. 安装必要的软件包以添加 NodeSource 仓库:

sudo yum install -y curl

c. 添加 NodeSource 仓库。以下命令将添加 Node.js 14.x 版本的仓库:

curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash -

你可以将 setup_14.x 替换为你想要安装的 Node.js 版本,例如 setup_12.x

d. 安装 Node.js:

sudo yum install -y nodejs

e. 验证 Node.js 是否已成功安装:

node --version
npm --version
  1. 使用 NVM(Node Version Manager)更新 Node.js

NVM 是一个用于管理多个 Node.js 版本的工具。要使用 NVM 更新 Node.js,请按照以下步骤操作:

a. 首先,确保已安装了 NVM。如果尚未安装,请运行以下命令:

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash

或者

wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash

b. 激活 NVM:

source ~/.bash_profile

或者

source ~/.zshrc

(取决于你使用的 shell)

c. 查看可用的 Node.js 版本:

nvm list-remote

d. 安装最新的 Node.js 版本:

nvm install node

e. 切换到最新安装的 Node.js 版本:

nvm use node

f. 验证 Node.js 是否已成功更新:

node --version
npm --version

以上就是在 CentOS 系统中更新 Node.js 的两种方法。你可以根据自己的需求选择合适的方法。

0