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