Windows 에서 node 관련 npm 명령등을 수행시에 다음과 같이 'node-gyp' 관련 에러가 발생 하는 경우가 있다.
npm ERR! time@0.11.4 install: `node-gyp rebuild` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the time@0.11.4 install script 'node-gyp rebuild'. 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.
이것은 python 관련 환경 문제로 python 2.7과 Microsoft Visual Studio C++ 2012 Express를 설치해야한다.
설치 완료 후 다시 npm 명령을 수행하면 잘 실행이 된다.
Reference
- https://github.com/nodejs/node-gyp
- http://stackoverflow.com/questions/21365714/nodejs-error-installing-with-npm
'Node.js' 카테고리의 다른 글
[BOWER] Proxy 설정 (0) | 2016.12.16 |
---|---|
[NPM] Proxy 설정 (1) | 2016.12.16 |
[Heroku] Deploy 된 Hubot 일정시간뒤에 Sleep 되는 현상 (2) | 2016.01.12 |
[Node.js] Ubuntu 에 Node.js 설정하기 (2) | 2016.01.07 |
[Node.js][Winston][Jsnlog] Node.js log module (0) | 2015.02.15 |