原文發(fā)表自 szhshp的第三邊境研究所 , 轉載請注明
gyp ERR! stack Error: Can't find Python executable 'python'
系統(tǒng): Win10
Gatsby使用一個Starter[1]進行npm install
的時候出現(xiàn)問題:
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:\nodejs\node_modules\npm\node_modules\node
-gyp\lib\configure.js:101:14)
gyp ERR! stack at G:\nodejs\node_modules\npm\node_modules\node-gyp\lib\confi
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:\Windows\system32\node_modules\caress-server\node_modules\buffert
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]:
管理員執(zhí)行:
$ npm install --global --production windows-build-tools
然后執(zhí)行:
$ npm install --global node-gyp
Solution Step 2
然鵝上面的Solution似乎對我的電腦無用啊...
可能需要手動設置[3]
npm config set python python2.7
npm config set msvs_version 2015
我不確定這樣的設置是否會影響到runtime, 因此我順手再設置了一個環(huán)境變量
PYTHON = C:\Users\Zill.windows-build-tools\python27\python.exe
注意這兒需要詳細到文件名
然后就解決了