반응형
시스템 환경
Windows Server 2016
NodeJS version : v12.14.1
npm version : v6.13.4
gyp ERR! find Python
gyp ERR! find Python Python is not set from command line or npm configuration
gyp ERR! find Python Python is not set from environment variable PYTHON
gyp ERR! find Python checking if "python" can be used
.
.
.
gypfind Python ERR!
npm install 진행 시 위 에러가 발생했다.
패키지 설치중 python이 없어서 발생하는 에러인데 해결하기 위해서는 몇가지 패키지를 설치해야 한다.
1. 패키지 설치 ( 관리자 Prompt에서 진행)
npm install -g --production windows-build-tools
npm install -g node-gyp
2. python 환경변수 등록
setx PYTHON "%USERPROFILE%\.windows-build-tools\python27\python.exe"
3. npm install
반응형
'JAVASCRIPT > NodeJS' 카테고리의 다른 글
[NodeJS] Error [ERR_UNESCAPED_CHARACTERS]: Request path contains unescaped characters (0) | 2021.01.19 |
---|---|
[NodeJS] Jimp 이용하여 비트맵 조작하기(c++ binary 통신) (0) | 2021.01.15 |
[NodeJS] Jimp 이용하여 이미지 속성 확인하기 (0) | 2021.01.15 |
[NodeJS] TCP Socket Server 구성하기 (0) | 2020.12.01 |
[NodeJS] UDP Socket Server 구성하기 (0) | 2020.12.01 |
댓글