우분투에서 node-gyp설치 오류
2023년 10월 8일 일요일
1분 소요
0회
문제
우분투 서버에서 node.js 디펜던시 패키지를 설치하던 중 오류가 났다.
오류내용
1
2
3
4
5
6
7
8
node-gyp rebuild
gyp ERR! build error
gyp ERR! stack Error: not found: make
gyp ERR! stack at F (/usr/lib/nodejs/npm/node_modules/which/which.js:43:28)
gyp ERR! stack at E (/usr/lib/nodejs/npm/node_modules/which/which.js:46:29)
gyp ERR! stack at /usr/lib/nodejs/npm/node_modules/which/which.js:57:16
gyp ERR! stack at Object.oncomplete (fs.js:297:15)
...
문제 해결
빌드에 필요한 패키지를 설치해서 해결되었다.
shellscript
1
sudo apt-get install build-essential
Loading reactions