programing

npm이 make not found 오류와 함께 시간을 설치하지 못했습니다.

newsource 2023. 6. 4. 10:33

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