在ubuntu 16.04中安装npm install -g composer-cli时出现问题

问题描述 投票:1回答:2

嗨,我正在尝试使用npm安装composer-cli,但它正在抛出错误。错误日志如下:

18988 error code ELIFECYCLE
18989 error errno 1
18990 error [email protected] install: `node-pre-gyp install --fallback-to-build --library=static_library`
18990 error Exit status 1
18991 error Failed at the [email protected] install script.
18991 error This is probably not a problem with npm. There is likely additional logging output above.
18992 verbose exit [ 1, true ]

我尝试了一切可能的方法来解决这个问题。但找不到任何解决方案。

请让我知道如何解决这个问题。

gyp ERR! build error 
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack     at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:262:23)
gyp ERR! stack     at ChildProcess.emit (events.js:182:13)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:240:12)
gyp ERR! System Linux 4.15.0-34-generic
gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "build" "--fallback-to-build" "--library=static_library" "--module=/home/dspl_user/.npm-global/lib/node_modules/composer-cli/node_modules/grpc/src/node/extension_binary/node-v64-linux-x64-glibc/grpc_node.node" "--module_name=grpc_node" "--module_path=/home/dspl_user/.npm-global/lib/node_modules/composer-cli/node_modules/grpc/src/node/extension_binary/node-v64-linux-x64-glibc"
gyp ERR! cwd /home/dspl_user/.npm-global/lib/node_modules/composer-cli/node_modules/grpc
gyp ERR! node -v v10.10.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok 
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/composer-cli/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] install: `node-pre-gyp install --fallback-to-build --library=static_library`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the [email protected] 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!     /home/dspl_user/.npm/_logs/2018-09-27T13_11_13_477Z-debug.log
node.js npm hyperledger-fabric
2个回答
0
投票

我想我和你有同样的错误。切换到Node 8.9.0后,它现在对我有用。看起来您正在使用Node v10,超级边缘结构不支持它。


0
投票

我通过=>在我的Ubuntu 18.04机器上解决了同样的问题

https://hyperledger.github.io/composer/latest/installing/installing-prereqs.html安装先决条件

其中说 - >

curl -O https://hyperledger.github.io/composer/latest/prereqs-ubuntu.sh

然后

chmod u+x prereqs-ubuntu.sh

最后=>

./prereqs-ubuntu.sh

然后重新启动终端并尝试安装=>

npm install -g [email protected]

没有su或sudo。我希望这有帮助 :):)

© www.soinside.com 2019 - 2024. All rights reserved.