📜  Centos 安装更新降级 nodejs - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:25.960000             🧑  作者: Mango

代码示例1
Install Node.js and npm using NVM:

- Install NVM:
sudo apt install curl
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
nvm –version (if don't work, logout or change user and retry this command)

- Install node
nvm install node
node –version

To install a specific version of Node, type in "nvm install" and the number of the version.
For example: "nvm install 10.1.0"
To switch to another version of Node.js you have already installed, use the command:
nvm use 10.16.0

To install Node.js development tools and libraries, use the command:
sudo yum install gcc g++ make