- gyp ERR! stack Error: Can't find Python executable 'python'
- Root Cause
- Solution Step 1
- Solution Step 2
- Reference
gyp ERR! stack Error: Can't find Python executable 'python'
系统: Win10
Gatsby 使用一个 Starter1 进行 npm install
的时候出现问题:
gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "python", you can set the PYT
HON env variable.
gyp ERR! stack at failNoPython (G:nodejsnode_modulesnpmnode_modulesnode
-gyplibconfigure.js:101:14)
gyp ERR! stack at G:nodejsnode_modulesnpmnode_modulesnode-gyplibconfi
gure.js:64:11
gyp ERR! stack at Object.oncomplete (fs.js:107:15)
gyp ERR! System Windows_NT 6.2.9200
gyp ERR! command "node" "G:\nodejs\node_modules\npm\node_modules\node-gyp\
bin\node-gyp.js" "rebuild"
gyp ERR! cwd C:Windowssystem32node_modulescaress-servernode_modulesbuffert
ools
gyp ERR! node -v v0.10.25
gyp ERR! node-gyp -v v0.12.2
gyp ERR! not ok
npm ERR! buffertools@2.0.1 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the buffertools@2.0.1 install script.
npm ERR! This is most likely a problem with the buffertools 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 buffertools
npm ERR! There is likely additional logging output above.
Root Cause
Some npm plugins need node-gyp to be installed. However, node-gyp has it's own dependencies
反正就是一系列的组件没安装呗.
注意: 这玩意不支持 Python 3.0, 因此只能安装 2.7
Solution Step 1
Stackoverflow 找到的第一个答案 2:
管理员执行:
代码语言:javascript复制$ npm install --global --production windows-build-tools
然后执行:
代码语言:javascript复制$ npm install --global node-gyp
Solution Step 2
然鹅上面的 Solution 似乎对我的电脑无用啊……
可能需要手动设置 3
代码语言:javascript复制npm config set python python2.7
npm config set msvs_version 2015
我不确定这样的设置是否会影响到 runtime, 因此我顺手再设置了一个环境变量
PYTHON = C:UsersZill.windows-build-toolspython27python.exe
注意这儿需要详细到文件名
然后就解决了
Reference
- https://www.gatsbyjs.org/docs/gatsby-starters/↩
- https://stackoverflow.com/questions/21365714/nodejs-error-installing-with-npm↩
- https://github.com/Microsoft/nodejs-guidelines/blob/master/windows-environment.md#compiling-native-addon-modules↩