# centos
curl -sL https://rpm.nodesource.com/setup_10.x | bash -
yum install -y nodejs
# debian
curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
sudo apt-get install nodejs
[root@localhost /]# node -v
v10.9.0
[root@localhost /]# npm -v
6.2.0
获取最新版 你nodejs 的 bash
curl --silent --location https://rpm.nodesource.com/setup_14.x | bash -
setup_14.x
: 指node的版本号,现在最新是14.15.3 。
用yum 安装node
sudo yum install -y nodejs
作者:小达Tmargin
链接:https://www.jianshu.com/p/8d4ef0c5b4a6
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。