npm install时报错:
Error: Can't find Python executable "python", you can set the PYTHON env variable
问题产生原因:缺少python环境
解决方法:
- 安装node-gyp
$ npm install -g node-gyp
- 安装windows-build-tools(run as Administrator)
//管理员身份打开命令行窗口
npm install --global --production windows-build-tools
- 配置python环境变量
setx PYTHON "C:\Users\x1c\.windows-build-tools\python27\python.exe"
如果还是不行,可以永久配置环境变量,右击我的电脑>属性>高级系统设置>环境变量,在系统变量的Path里面新增C:\Users\x1c.windows-build-tools\python27。
github参考地址:https://github.com/nodejs/node-gyp