この記事では、Ubuntu で最新バージョンの node.js をインストールする方法を紹介します。
以下のコマンドを実行します。
cd ~
apt-get update
wget -O nodejs_latest.sh https://raw.githubusercontent.com/nodesource/distributions/master/deb/setup_current.x
bash nodejs_latest.sh
apt install nodejs
インストールが完了したら、nodejs -V
とnpm -V
コマンドを使用して、node.js と npm のバージョンを確認します。
misaka no のブログから転載:
https://www.misakano.eu.org/2021/08/17/Ubuntu%E5%AE%89%E8%A3%85%E6%9C%80%E6%96%B0%E7%89%88node-js/