3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Ubuntu 20.04 LTSでnode.jsのバージョンを上げる

Last updated at Posted at 2022-02-01

環境
Ubuntu Server 20.04 LTS

Ubuntu 20.04 LTSだとapt installではバージョン10.19.0が当たるらしい。

# sudo apt install nodejs
# node -v
v10.19.0
  • apt install nodejsからの導入では、難ありなので、npmのインストールからやった方が良かった。
# sudo apt install npm
# npm -v
6.14.4
  • npmnパッケージをインストールします。
# sudo npm install n -g
  • nコマンドで任意のバージョンをインストールします。
# sudo n 16
   installed : v16.14.0 (with npm 8.3.1)
  • nコマンドで任意のバージョンを選択します。
# sudo n
  ο node/16.14.0

Use up/down arrow keys to select a version, return key to install, d to delete, q to quit
  • npmpurgeします。
# sudo apt purge npm
# npm
bash: /usr/bin/npm: そのようなファイルやディレクトリはありません
  • 設定を反映します。
# sudo ln -sf /usr/local/bin/node /usr/bin/node
# sudo ln -sf /usr/local/bin/npm /usr/bin/npm
  • 反映を確認します。
# node -v 
v16.14.0
# npm -v
8.3.1

先に指定したバージョンになっていれば完了。

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?