美文网首页Node.jsWeb前端之路
gyp ERR! stack Error: Can't

gyp ERR! stack Error: Can't

作者: szhielelp | 来源:发表于2017-11-14 10:39 被阅读318次

    原文发表自 szhshp的第三边境研究所 , 转载请注明

    gyp ERR! stack Error: Can't find Python executable 'python'

    系统: Win10

    Gatsby使用一个Starter[1]进行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:\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]:

    管理员执行:

    $ npm install --global --production windows-build-tools
    

    然后执行:

    $ npm install --global node-gyp
    

    Solution Step 2

    然鹅上面的Solution似乎对我的电脑无用啊...

    可能需要手动设置[3]

    npm config set python python2.7
    npm config set msvs_version 2015
    

    我不确定这样的设置是否会影响到runtime, 因此我顺手再设置了一个环境变量

    PYTHON = C:\Users\Zill.windows-build-tools\python27\python.exe

    注意这儿需要详细到文件名

    然后就解决了

    Reference


    1. https://www.gatsbyjs.org/docs/gatsby-starters/

    2. https://stackoverflow.com/questions/21365714/nodejs-error-installing-with-npm

    3. https://github.com/Microsoft/nodejs-guidelines/blob/master/windows-environment.md#compiling-native-addon-modules

    相关文章

      网友评论

        本文标题:gyp ERR! stack Error: Can't

        本文链接:https://www.haomeiwen.com/subject/yxuxvxtx.html