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