在Ubuntu 14.04 LTS上安装Nodejs v4.5.0
备忘录
参考来源:http://askubuntu.com/questions/594656/how-to-install-the-latest-versions-of-nodejs-and-npm-for-ubuntu-14-04-lts
$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.5 LTS"
// 設定ファイルを含めて削除
$ sudo apt-get purge nodejs npm
// version 6.xをインストールしたい場合、https://deb.nodesource.com/setup_6.x を指定
$ curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
$ sudo apt-get install nodejs
$ nodejs -v
v4.5.0
$ npm -v
2.15.9