문제

I'm trying to install the dependencies of the node-rtp-midi module. I followed the tutorial on the node-gyp github and searched the internet for many hours. I just can't get this thing to work. Every time a module needs node-gyp, the installation of the dependencies fails. Bellow you can find a screenshot with the cmd output.

http://i.imgur.com/jlziCDt.jpg?1

Any help would be greatly appreciated!

  • Visual Studio 2012 installed
  • Windows SDK installed
  • Python 2.7 installed
  • node.js version 0.10.26
  • node-gyp version 0.13.0
도움이 되었습니까?

해결책 2

In order to install rtpmidi-node on a Windows machine, you should install the Apple Bonjour SDK

다른 팁

You need to set the PYTHON EnvVar to a full path including the executable! The PATH Variable is not enough.

set PYTHON=c:....Python\2.7.4\python.exe

Otherwise node-gyp finds the correct path and executes the found path, not the executable. The result is the ENOENT.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top