代码之家  ›  专栏  ›  技术社区  ›  Asym

无法“npm install@tensorflow/tfjs node”

  •  2
  • Asym  · 技术社区  · 6 年前

    我正在尝试为tensorflow.js安装node.js绑定。但是,当我运行“npm install@tensorflow/tfjs node”时,会得到以下输出。如有任何帮助,我们将不胜感激。谢谢您!

    D:\tensorflow.js>npm install @tensorflow/tfjs-node
    
    > @tensorflow/tfjs-node@0.1.7 install D:\tensorflow.js\node_modules\@tensorflow\tfjs-node
    > node-gyp rebuild
    
    
    D:\tensorflow.js\node_modules\@tensorflow\tfjs-node>if not defined npm_config_node_gyp (node "C:\Program Files\nodejs\node_modules\npm\bin\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild )  else (node
    "" rebuild )
    gyp: Undefined variable tensorflow-library-target in binding.gyp while trying to load binding.gyp
    gyp ERR! configure error
    gyp ERR! stack Error: `gyp` failed with exit code: 1
    gyp ERR! stack     at ChildProcess.onCpExit (C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\configure.js:336:16)
    gyp ERR! stack     at emitTwo (events.js:126:13)
    gyp ERR! stack     at ChildProcess.emit (events.js:214:7)
    gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:198:12)
    gyp ERR! System Windows_NT 10.0.16299
    gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
    gyp ERR! cwd D:\tensorflow.js\node_modules\@tensorflow\tfjs-node
    gyp ERR! node -v v8.9.3
    gyp ERR! node-gyp -v v3.6.2
    gyp ERR! not ok
    npm WARN tensorflow@1.0.0 No description
    npm WARN tensorflow@1.0.0 No repository field.
    
    npm ERR! code ELIFECYCLE
    npm ERR! errno 1
    npm ERR! @tensorflow/tfjs-node@0.1.7 install: `node-gyp rebuild`
    npm ERR! Exit status 1
    npm ERR!
    npm ERR! Failed at the @tensorflow/tfjs-node@0.1.7 install script.
    npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
    
    npm ERR! A complete log of this run can be found in:
    npm ERR!     C:\Users\Myuser\AppData\Roaming\npm-cache\_logs\2018-06-23T18_50_36_025Z-debug.log
    
    3 回复  |  直到 6 年前
        1
  •  2
  •   robertgrzonka    6 年前

    我可能错了,但你用的是windows,但我可以在 npmjs.com –tfjs节点仅在linux和macos上可用。

    用于node的tensorflow.js当前支持以下平台:

    1. Mac OS X CPU(10.12.6 Siera或更高版本)
    2. Linux CPU(Ubuntu16.04或更高版本)
    3. Linux GPU(Ubuntu16.04或更高版本和CUDA9.0w/cudnn v7)(请参阅安装说明)
        2
  •  3
  •   Simon Xueming Duan    6 年前

    最后,我可以在windows上运行tensorflow.js节点示例。实际上,它运行在ubuntu wsl(linux的windows子系统)上。

    1. 使用powershell启用wsl并从微软商店安装ubuntu wsl。
    2. 在APUTU-WSL中用APT GET安装多个工具,包括NoDEJS、Pug、G++。因为警告信息含糊不清,我几乎放弃了。
    3. 可选: Running Node.js on WSL from Visual Studio Code

    我可能会错过一些琐碎的步骤。

        3
  •  0
  •   Aditya Sharma    6 年前

    您还需要确保使用的是Python2.7而不是Python3。* 最好的选择是使用python 2.7创建一个新的virtualenv,然后进行安装。

    请参考: https://github.com/caisq/tfjs-node 更多细节!