美文网首页
node-gpy 总是安装失败,记录一下解决流程

node-gpy 总是安装失败,记录一下解决流程

作者: burgess123 | 来源:发表于2024-03-15 14:21 被阅读0次

    事故1:ModuleNotFoundError: No module named 'distutils'
    处理方式:python3 -m pip install setuptools 原因是高版本的python并没有distutils这个模块
    https://github.com/nodejs/node-gyp/issues/2915
    事故2:binding.gyp not found (cwd: /Users/xxx) while trying to load binding.gyp
    处理方式:在当前项目的根目录创建binding.gyp文件,并填写内容:

    {
      "targets": [
        {
          "target_name": "binding",
          "sources": [ "build/Release/binding.node" ]
        }
      ]
    }
    
    图片.png

    相关文章

      网友评论

          本文标题:node-gpy 总是安装失败,记录一下解决流程

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