Loading... [Nodejs官网](https://nodejs.org/zh-cn/download/package-manager) Centos8 ``` #搜索软件包 dnf search nodejs #查看软件包信息nodejs的版本是10.21.0 dnf info nodejs #安装nodejs dnf install nodejs #由于版本不是最新的,所以使用n工具升级版本 #安装n npm install n -g #通过n安装最新的lts和current n install lts n install latest #通过n切换版本 n ``` nvm包管理器安装 ``` # installs nvm (Node Version Manager) curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash # download and install Node.js (you may need to restart the terminal) nvm install 20 # verifies the right Node.js version is in the environment node -v # should print `v20.15.1` # verifies the right NPM version is in the environment npm -v # should print `10.7.0` ``` 最后修改:2024 年 07 月 13 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,就赞赏一下吧~