npm is known not to run on Node.js v10.19.0

김경열·2022년 8월 15일
0
post-thumbnail

참고

https://github.com/nodesource/distributions#enterprise-linux-based-distributions

문제 상황

  • nodejs 버전과 npm 충돌
  • 해결하려면 npm 을 통해 node 버전을 올려야 하는데 위 에러메세지가 나오며 모든 npm 커맨드 사용 불가

해결

  • curl 로 직접 node lts 버전 설치

커맨드

아래 커맨드 중 '/setup_lts.x' <- 여기서 '.x' 수정하지 않고 그대로 씁니다.

curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejs
profile
초보 개발자

0개의 댓글