3

websocketNodeJS にモジュールをインストールしようとすると、次のエラーが発生しました。Ubuntu 12.04 マシンで試しています。

ubuntu@domU-12-31-39-14-1A-A1:/var/www$ npm install websocket
npm http GET https://registry.npmjs.org/websocket
npm http 304 https://registry.npmjs.org/websocket

> websocket@1.0.8 install /var/www/node_modules/websocket
> node install.js

[websocket v1.0.8] Attempting to compile native extensions.
[websocket v1.0.8]
Native code compile failed!!
Please note that this module DOES NOT REQUIRE the native components
and will still work without them, though not quite as efficiently.

On Windows, native extensions require Visual Studio and Python.
On Unix, native extensions require Python, make and a C++ compiler.
Start npm with --websocket:verbose to show compilation output (if any).
websocket@1.0.8 node_modules/websocket

websocketモジュールのインストールに使用したコマンドはnpm install websocket. 誰かが何がうまくいかないのかアドバイスできますか?

4

1 に答える 1

1

python と make がインストールされているかどうかを確認します。Ubuntuではこれを行っていませんが、Windows7では同じエラーが表示されます。この投稿は役に立ちます。npm install websocket@1.0.3 で試してみましたが、うまくいきました。

于 2013-05-24T19:59:43.160 に答える