반응형
yum install 로 시도하면 패키지가 없어서 설치에 실패한다. 그래서 등록을 해줘야 한다.
다음의 명령어로 실행한다.
curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash -
현재 버전은 16을 기준으로 했는데 버전을 확인하고 싶다면 다음 사이트에서 가능하다.
https://github.com/nodesource/distributions
다음의 메세지가 나오면서 패키지 설치가 완료된다.
## 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
끝
반응형
'공부 > 프로그래밍' 카테고리의 다른 글
[react, webpack] 경로 요약하기(alias) (0) | 2021.10.04 |
---|---|
[material-ui(mui)] datepicker 설정(date format 포함) (0) | 2021.10.01 |
[aws, sqs, springboot] fifo 전송 에러 (A queue already exists with the same name and a different ...) (0) | 2021.09.22 |
[springboot] RestTemplate 를 사용할 때 401 에 body가 없는 경우(no body) (0) | 2021.08.06 |
[springboot, security] ResouceServer에서 HttpBasic에 Exception 핸들링하기 (0) | 2021.08.02 |
댓글