본문 바로가기
why and yes/에러해결

npm install 오류 발생 시, 해결 방안

by 대범하게 2023. 4. 5.
반응형

npm install 오류 발생 시, 4가지 해결 방안

방법 1) pacakage-lock.json을 삭제 후, npm install 실행

 

방법 2) pacakage-lock.jsonnode\_modules 모두 삭제 후, npm install 실행

 

방법 3) npm cache clean —force

이 명령어는 npm의 cache를 모조리 삭제하는 명령어

 

방법 4) 연속적으로 발생했던 npm install 오류 ⇒ canvas 라이브러리 문제

 

npm install 시, 지속적으로 발생했던 canvas 관련 error

1. pacakage.json에서 canvas를 삭제 후, npm install 실행

2. pacakage.json에서 canvas를 되돌린 후, npm install 실행

⇒ npm install 설치 되는 것을 확인함 !

3. 해결 방안 !! (How to fix an issue installing Node canvas on macOS)

brew install pkg-config cairo pango libpng jpeg giflib librsvg

위 코드를 사용하기 위해 brew를 설치해야한다. brew를 설치하는 방법은 아래 링크로 접속하면 된다.

⇒ brew 설치 과정: https://bo5mi.tistory.com/194  brew 설치가 완료되었다면 위의 코드를 터미널에 입력하면 된다.

 

Reference

https://flaviocopes.com/fix-node-canvas-error-pre-gyp-macos/

반응형