LoginSignup
0
0

More than 1 year has passed since last update.

【nodejs】NodeJS v17.4.0 ソースインストール【RockyLinux】

Posted at

NodeJS の最新版 インストール

2022/01/20

  • NodeJS : v17.4.0
  • OS : Rocky Linux release 8.4 (Green Obsidian)

手順

C, C++コンパイラが必要なのでinstall

# dnf install -y gcc gcc-c++ make

Source Install

# cd /usr/local/src
# wget https://nodejs.org/dist/v17.4.0/node-v17.4.0.tar.gz
# tar xzvf node-v17.4.0.tar.gz 
# cd node-v17.4.0
# ./configure

# ↓ GCE2コア8GBのインスタンスだと1時間くらいかかるので注意 -j<cpuコア数>で分散処理可能?
# make
# make install

確認

$ node -v
v17.4.0

$ npm -v
8.3.1

$ npx -v
8.3.1
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