본문 바로가기
공부/프로그래밍

[aws] amazon linux2 에 nodejs 설치하기

by demonic_ 2021. 9. 24.
반응형

yum install 로 시도하면 패키지가 없어서 설치에 실패한다. 그래서 등록을 해줘야 한다.

 

다음의 명령어로 실행한다.

curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash -

 

 

현재 버전은 16을 기준으로 했는데 버전을 확인하고 싶다면 다음 사이트에서 가능하다.

https://github.com/nodesource/distributions

 

GitHub - nodesource/distributions: NodeSource Node.js Binary Distributions

NodeSource Node.js Binary Distributions. Contribute to nodesource/distributions development by creating an account on GitHub.

github.com

 

다음의 메세지가 나오면서 패키지 설치가 완료된다.

## Run `sudo yum install -y nodejs` to install Node.js 16.x and npm.
## You may run dnf if yum is not available:
     sudo dnf install -y nodejs
## You may also need development tools to build native addons:
     sudo yum install gcc-c++ make
## To install the Yarn package manager, run:
     curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
     sudo yum install yarn

 

이제 위의 설명대로 sudo yum install -y nodejs 를 실행해보자

sudo yum install -y nodejs

 

완료 후 버전을 확인해보자

$ node -v
v16.10.0

 

 

반응형

댓글