debian和ubuntu用apt-get安装nodejs

debian和ubuntu的apt-get真是大坑,默认装的nodejs竟然不是真正的nodejs,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

 

posted @ 2016-06-22 22:31  网瘾君  阅读(10294)  评论(0编辑  收藏  举报