에러명
ERROR: npm is known not to run on Node.js v10.19.0
You'll need to upgrade to a newer Node.js version
in order to use this version of npm.
You can find the latest version at https://nodejs.org/
에러 설명
npm과 node.js 의 버전이 안맞아서 충돌
해결 방법
1.
캐시 삭제 (chche가 남아있는 경우 에러 발생 가능성이 있음)
sudo npm cache clean -f
Bash
복사
2.
node.js와 npm 완전 제거
sudo apt remove nodejs npm
Bash
복사
3.
node.js와 npm 이전 파일 삭제
sudo apt remove --purge nodejs npm
Bash
복사
4.
node.js와 npm 다시 설치
sudo apt install npm
sudo apt install nodejs
Bash
복사
5.
node.js 최신 버전 업데이트
sudo npm cache clean -f
sudo npm install -g n
sudo n lts
Bash
복사
6.
npm 최신 버전 업데이트
sudo npm i -g npm
Bash
복사
7.
node.js 최신 버전 업데이트
sudo apt update && sudo apt upgrade
Bash
복사
8.
버전 확인
npm -v
node -v
PHP
복사