美文网首页npm
Error: Can't find Python exe

Error: Can't find Python exe

作者: Vivian_0430 | 来源:发表于2019-07-25 10:51 被阅读45次

    npm install时报错:

    Error: Can't find Python executable "python", you can set the PYTHON env variable
    

    问题产生原因:缺少python环境
    解决方法:

    1. 安装node-gyp
    $ npm install -g node-gyp
    
    1. 安装windows-build-tools(run as Administrator)
    //管理员身份打开命令行窗口
    npm install --global --production windows-build-tools
    
    1. 配置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

    相关文章

      网友评论

        本文标题:Error: Can't find Python exe

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