node.js - Installing node modules with node-gyp spawn ENOENT error -
i'm trying install dependencies of node-rtp-midi module. followed tutorial on node-gyp github , searched internet many hours. can't thing work. every time module needs node-gyp, installation of dependencies fails. bellow can find screenshot cmd output.
http://i.imgur.com/jlzicdt.jpg?1
any appreciated!
- visual studio 2012 installed
- windows sdk installed
- python 2.7 installed
- node.js version 0.10.26
- node-gyp version 0.13.0
you need set python envvar full path including executable! path variable not enough.
set python=c:....python\2.7.4\python.exe
otherwise node-gyp finds correct path , executes found path, not executable. result enoent.
Comments
Post a Comment