#author("2020-11-11T12:53:02+09:00;2020-09-23T14:14:51+09:00","default:ryuichi","ryuichi")
#author("2020-11-11T12:54:14+09:00;2020-09-23T14:14:51+09:00","default:ryuichi","ryuichi")
* Ubuntuにnで任意のバージョンをインストールする [#vc163924]
** システムのnodejsのインストール [#r8c3e40a]
sudo apt install nodejs npm
** nパッケージのインストール [#d800abc4]
sudo npm install n -g
*** インストール済みのnの確認 [#x20acb48]
npm root -g
ls /usr/local/lib/node_modules/n
which n
** N_PREFIXの設定 [#w2c636dc]
vi ~/.bashrc
-------------------------------
export N_PRFIX=~/.n
export PATH=$N_PREFIX/bin:$PATH
-------------------------------
exec bash
** nで任意のバージョンをインストール [#n63fc219]
*** インストール可能なバージョンの確認 [#v8426910]
n ls-remote
n ls-remote --all | grep -e '^10\.'
*** 任意のバージョンのインストール [#z48ee93f]
n lts
n install 10.22.1
*** 有効なnodeコマンドの確認 [#s5f1d72f]
which node
** 参考 [#oe18a7a3]
- https://qiita.com/seibe/items/36cef7df85fe2cefa3ea
- https://www.trifields.jp/how-to-install-node-js-on-ubuntu1604-2680