Ubuntu16.04 nodejs环境搭建

下载地址:https://nodejs.org/en/download/

nodejs GitHub地址:https://github.com/nodejs/node

安装文档地址:https://github.com/nodesource/distributions

命令如下,以 v10 为例,其他可参考文档:

# Using Ubuntu
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs

# Using Debian, as root
curl -sL https://deb.nodesource.com/setup_10.x | bash -
apt-get install -y nodejs

验证:

node -v

输出对应node版本,如:v10.17.0

你可能感兴趣的:(环境配置,linux)