make
-
[solved] npm install, gyp ERR! stack Error: `make` failed with exit code: 2Backend/NodeJS 2020. 12. 1. 16:17
npm 또는 yarn으로 노드 프로젝트의 모듈을 설치하려는데, # npm install MODULE 아래와 같은 gyp 관련 에러가 발생했을땐, 30 warnings and 12 errors generated. make: *** [Release/obj.target/fse/fsevents.o] Error 1 gyp ERR! build error gyp ERR! stack Error: `make` failed with exit code: 2 ... info This module is OPTIONAL, you can safely ignore this error 혹시 노드 버전을 12.x 를 사용중이라면 10.x 으로 다운그레이드 해주자. # nvm install 10.16.3 # nvm use 10.16.3 ..
-
[solution] npm install node gyp ERR! stack Error: `make` failed with exit code: 2Infra/linux 2020. 2. 5. 12:37
Amazon linux 2 에서 npm install 시 아래와 같은 에러가 발생한다면 gyp ERR! stack Error: `make` failed with exit code: 2 (스크린샷) (에러 로그) gyp ERR! build error gyp ERR! stack Error: `make` failed with exit code: 2 gyp ERR! stack at ChildProcess.onExit (/usr/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23) gyp ERR! stack at ChildProcess.emit (events.js:223:5) gyp ERR! stack at Process.ChildProcess._han..