0


在CentOS上安装nvm(Node Version Manager)

  1. 安装 curl: 首先,你需要安装 curl。打开终端,并输入以下命令:
sudo yum install curl
  1. 安装 nvm: 使用 curl 下载并运行 nvm 的安装脚本。这将从 GitHub 上下载 nvm 的安装脚本,并执行该脚本以完成 nvm 的安装。在终端中输入以下命令:
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.35.3/install.sh | bash
  1. 验证安装: 安装完成后,你需要重新打开终端窗口,或者使用以下命令让 nvm 立即生效:
source ~/.bashrc
  1. 安装 Node.js: 使用 nvm 安装最新版本的 Node.js。你可以通过运行以下命令在 CentOS 中安装最新版本的 Node.js:
nvm install node

如果你想要安装其他版本的 Node.js,可以使用以下命令:

nvm install <version>
  1. 切换 Node.js 版本: 安装多个版本的 Node.js 后,你可以使用 nvm 来切换 Node.js 的版本。运行以下命令在 CentOS 中切换 Node.js 的版本:
nvm use <version>
  1. 卸载 nvm: 如果你不再需要 nvm,可以使用以下命令在 CentOS 中卸载 nvm:
rm -rf ~/.nvm
  1. 设置 nvm 自动运行: 为了确保每次打开新的终端窗口时都能自动加载 nvm,你可以添加以下行到你的 .bashrc 文件:
export NVM_DIR="$HOME/.nvm" 
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm 
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion

然后运行

source ~/.bashrc

使更改生效。

标签: centos linux 运维

本文转载自: https://blog.csdn.net/solomon_zhe/article/details/135577842
版权归原作者 爱跳舞的宁 所有, 如有侵权,请联系我们删除。

“在CentOS上安装nvm(Node Version Manager)”的评论:

还没有评论