1

Mac OSX で NPM 経由で node js soap モジュールをインストールしようとしていますが、手動でインストールして expat.h などをポイントするのに十分な努力をしましたが、うまくいきませんでした

npm インストール 石鹸

npm http GET https://registry.npmjs.org/soap
npm http 304 https://registry.npmjs.org/soap
npm http GET https://registry.npmjs.org/node-expat
npm http GET https://registry.npmjs.org/request
npm http 304 https://registry.npmjs.org/node-expat
npm http 304 https://registry.npmjs.org/request

> node-expat@1.6.0 install /Users/test/test1/node_modules/soap/node_modules/node-expat
> node-waf configure build

Checking for program g++ or c++          : /usr/bin/g++ 
Checking for program cpp                 : /usr/bin/cpp 
Checking for program ar                  : /usr/bin/ar 
Checking for program ranlib              : /usr/bin/ranlib 
Checking for g++                         : ok  
Checking for node path                   : not found 
Checking for node prefix                 : ok /usr/local 
Checking for header expat.h              : not installed 
/Users/test/test1/node_modules/soap/node_modules/node-expat/wscript:14: error: the configuration failed (see '/Users/test/test1/node_modules/soap/node_modules/node-expat/build/config.log')
npm ERR! node-expat@1.6.0 install: `node-waf configure build`
npm ERR! `sh "-c" "node-waf configure build"` failed with 1
npm ERR! 
npm ERR! Failed at the node-expat@1.6.0 install script.
npm ERR! This is most likely a problem with the node-expat package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-waf configure build
npm ERR! You can get their info via:
npm ERR!     npm owner ls node-expat
npm ERR! There is likely additional logging output above.

npm ERR! System Darwin 11.3.0
npm ERR! command "node" "/usr/local/bin/npm" "install" "soap"
npm ERR! cwd /Users/test/test1
npm ERR! node -v v0.8.1
npm ERR! npm -v 1.1.33
npm ERR! code ELIFECYCLE
npm ERR! message node-expat@1.6.0 install: `node-waf configure build`
npm ERR! message `sh "-c" "node-waf configure build"` failed with 1
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /Users/test/test1/npm-debug.log
npm ERR! not ok code 0

expatを手動でインストールしたなどをグーグルで検索しましたが、運がありません。Xcode 4.3 がインストールされており、コマンド ライン サポートも用意されていることに注意してください。

次の 2 つのメッセージを削除する方法がよくわかりません。助けてください。

Checking for node path                   : not found 
Checking for header expat.h              : not installed 
4

3 に答える 3

1

node-waf はノード 0.8 で削除され、バイナリ モジュールの作成者は代わりに node-gyp に移行することが推奨されています。

于 2012-07-04T10:55:04.450 に答える
0

1.6.1で修正され、正常に動作します:)

于 2012-08-14T09:36:36.727 に答える
0

libexpat 開発ヘッダーが必要です。libexpat1-dev パッケージを homebrew または ports などのパッケージ マネージャーでインストールしてみてください...

于 2012-12-05T00:05:24.213 に答える