Ubuntu/Debian/CentOS系统安装Node.js软件教程
导读
在这篇文章中,是整理比较全的Ubuntu/Debian/CentOS系统,安装最新版本Node.js的教程,目前最新的版本是10.0,但是一般我们也不要太追求最新,我们可以安装8.0或者9.0差不多。
第一、Ubuntu
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
apt-get install -y nodejs
第二、Debian
curl -sL https://deb.nodesource.com/setup_9.x | bash -
apt-get install -y nodejs
第三、CentOS
curl -sL https://rpm.nodesource.com/setup_9.x | bash -
yum install nodejs -y
安装过程都是差不多的。
看到如图,然后会指示我们下面执行哪个命令。
我们可以看到最新版本Node.JS和npm。
评论(0)