Debian/Ubuntu快速安装Node.js v8.x及其它版本方法
当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »
说明:有时候我们运行某个软件需要用到Node.js
环境,而系统也没有装,这时候我们需要自己安装了,这里说下快速安装方法。
1、升级系统源和安装需要的软件
apt-get update -y
apt-get install -y build-essential curl
2、安装Node.js最新版本v8.xNode.js
官方GitHub
地址:https://github.com/nodesource/distributions
# Ubuntu系统
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
# Debian系统
curl -sL https://deb.nodesource.com/setup_8.x | bash -
apt-get install -y nodejs
3、查看当前Node.js版本
node -v
通过查看,我们可以看到当前Node.js
是最新的v8.x
版本。
提示:如果我们需要其他版本的Node.js
,我们只需要将安装里面下载链接setup_8.x
替换成其它即可,如setup_7.x
.