Raspberry Pi 3 Model B+に最新のNode.jsとnpmをインストールする
1701 ワード
環境
cat /etc/debian_version
10.4
cat /etc/issue
Raspbian GNU/Linux 10 \n \l
インストール方法
cat /etc/debian_version
10.4
cat /etc/issue
Raspbian GNU/Linux 10 \n \l
公式にやり方が書いていました。
https://github.com/nodesource/distributions
curl -sL https://deb.nodesource.com/setup_14.x | bash -
apt-get install -y nodejs
※root権限で実行
バージョン確認
node -v
v12.11.1
npm -v
6.14.5
node -v
v12.11.1
npm -v
6.14.5
npmは最新バージョンが入ったが、nodeが最新バージョンになっていない。
nodeを最新バージョンに切り替える
nodeバージョン管理システム「n」をnpmにてインストールし、最新バージョンに切り替える。
tj/n: Node version management
echo "N_PREFIX=$HOME/.n" >> .profile
echo "export PATH=$N_PREFIX/bin:$PATH" >> .profile
source .profile
npm install -g n
最新nodeに切り替え
n latest
バージョンを確認
node -v
v14.5.0
最新バージョンが入りました。
お疲れ様でした。
Author And Source
この問題について(Raspberry Pi 3 Model B+に最新のNode.jsとnpmをインストールする), 我々は、より多くの情報をここで見つけました https://qiita.com/interceptor128/items/29abb0466ca994bc0e8d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .