본문 바로가기

💻 개발IT/Vue.js

[npm] read-shrinkwrap This version of npm is compatible with lockfileVersion@1,

npm install 할 때,

npm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but npm-shrinkwrap.json was generated for lockfileVersion@2. I'll try to do my best with it!

위와 같은 에러 발생.

 

npm version이 6.14.4이라 lockfileVersion 1을 호환해야하는데 해당 프로젝트는 lockfileVersion 2라서 생기는 문제로

npm version을 7 또는 8로 업그레이드 하면 된다.

 

npm install --g npm
반응형