💻Mac OS Set up/Unix, Linux CLI

Ubuntu "npm install" 에러, Error: Missing required argument #1

코너(Corner) 2022. 6. 17.
반응형

Ubuntu "npm install" 에러, Error: Missing required argument #1

ubuntu server에서 git clone을 받은 프로젝트를 npm install 하려는 순간

Error: Missing required argument #1

인터넷에 위 에러를 검색해보니, 최신버전이 아닌 오래된 npm이 설치되어 있어서 발생하는 에러.

npm 최신버전으로 업데이트가 필요합니다. 아래 명령어를 실행 후 npm install이 정상 실행됩니다.

npm cache clean --force
npm install -g n
sudo n stable
sudo npm install
반응형

댓글