LoginSignup
0
0

More than 5 years have passed since last update.

Ubuntu 14.04 LTSにNodejs v4.5.0をインストール

Last updated at Posted at 2016-09-08

備忘録
参考元: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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0