npm이 make not found 오류와 함께 시간을 설치하지 못했습니다.
nodejs 서버에 시간을 설치하려고 하면 다음 오류가 발생합니다.
time@0.8.4 install /var/www/track/node_modules/time
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)
gyp ERR! System Linux 3.2.0-31-virtual
gyp ERR! command "node" "/usr/lib/nodejs/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /var/www/track/node_modules/time
gyp ERR! node -v v0.8.15
gyp ERR! node-gyp -v v0.7.1
gyp ERR! not ok
npm ERR! time@0.8.4 install: `node-gyp rebuild`
npm ERR! `sh "-c" "node-gyp rebuild"` failed with 1
npm ERR!
npm ERR! Failed at the time@0.8.4 install script.
npm ERR! This is most likely a problem with the time package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! node-gyp rebuild
npm ERR! You can get their info via:
npm ERR! npm owner ls time
npm ERR! There is likely additional logging output above.
npm ERR! System Linux 3.2.0-31-virtual
npm ERR! command "nodejs" "/usr/bin/npm" "install" "time"
npm ERR! cwd /var/www/track
npm ERR! node -v v0.8.15
npm ERR! npm -v 1.1.66
npm ERR! code ELIFECYCLE
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! /var/www/track/npm-debug.log
npm ERR! not ok code 0
어떤 OS를 사용하고 있습니까?
Ubuntu인 경우 빌드 필수 패키지를 설치해야 합니다.
$ sudo apt-get install build-essential
그런 다음 패키지를 다시 설치해 보십시오.
도커를 사용할 때도 동일한 문제가 있었습니다. CENTOS 7과 RHEL 7의 기본 이미지 모두에서...다음을 수행합니다.
RUN yum install -y make gcc*
나한테 딱 맞았어요!
참고: gcc*에 나열된 69개의 패키지를 모두 설치하는 대신 아래와 같이 nodej 설치에 필요한 것만 설치할 수 있습니다.
dnf install -y gcc-c++ make
윈도우즈 및 npm을 사용하는 경우 cmd(관리자)를 통해 설치합니다.
npm install --global --production windows-build-tools
알파인의 경우:
apk --no-cache add build-base
gyp도 python에 굶주린 경우 다음을 추가합니다.
export PYTHONUNBUFFERED=1
apk add --update --no-cache python3 \
&& ln -sf python3 /usr/bin/python \
&& python3 -m ensurepip \
&& pip3 install --no-cache --upgrade pip setuptools
(아마도 이건 오버슈팅일 수도 있지만, 우리의 경우에는 속임수를 썼습니다.)
순식간에Dockerfile
접두어apk
와 함께RUN
및 대체export
와 함께ENV
다음과 같이:
RUN apk --no-cache add build-base
그리고.
ENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3 \
&& ln -sf python3 /usr/bin/python \
&& python3 -m ensurepip \
&& pip3 install --no-cache --upgrade pip setuptools
패키지build-base
여기에 설명되어 있습니다: https://pkgs.alpinelinux.org/package/v3.17/main/x86/build-base 및 기본적으로 자체 콘텐츠가 없지만 의존적입니다.binutils
,fortify-headers
,g++
,gcc
,libc-dev
그리고.make
.
Manjaro/Arch Linux의 경우 make 및 gcc를 설치해야 합니다.
sudo pacman -S make gcc
언급URL : https://stackoverflow.com/questions/14772508/npm-failed-to-install-time-with-make-not-found-error
'programing' 카테고리의 다른 글
활성 레코드를 복제하는 가장 쉬운 방법은 무엇입니까? (0) | 2023.06.04 |
---|---|
ActiveRecord 콜백 실행을 방지하려면 어떻게 해야 합니까? (0) | 2023.06.04 |
Android Studio에 장치가 표시되지 않습니다. (0) | 2023.06.04 |
선의 개별 점에 대한 마커 설정 (0) | 2023.06.04 |
Visual Studio에서 NuGet 패키지 복원을 사용하려면 어떻게 해야 합니까? (0) | 2023.06.04 |