Debian 和 Ubuntu 用 `apt-get` 安装 Node.js[转]

Debian 和 Ubuntu 的 apt-get 真是大坑,默认装的 Node.js 竟然不是真正的 Node.js,npm 也有问题。

用这样的命令可以解决:

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

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

版权声明

本博客所有的转载文章,作者皆保留版权。转载必须包含本声明,保持本文完整,并以超链接形式注明作者网瘾君和本文原始地址:https://www.cnblogs.com/netaddi/p/5608856.html

发表评论

您的电子邮箱地址不会被公开。