11

npm 経由で Wi​​ndows に PhantomJS 1.8.1-3 をインストールしようとしています。私が何をしても失敗するようです。私が実行しているコマンドは次のとおりです。

npm install phantomjs

そのコマンドを実行した後、次のエラーで失敗します。

    > phantomjs@1.8.1-3 install c:\johnprojects\tablet\htdocs\mini-app-sandbox\node_
modules\grunt-contrib-qunit\node_modules\grunt-lib-phantomjs\node_modules\phanto
mjs
> node install.js

Requesting c:\johnprojects\tablet\htdocs\mini-app-sandbox\node_modules\grunt-con
trib-qunit\node_modules\grunt-lib-phantomjs\node_modules\phantomjs\tmp\phantomjs
-1.8.1-windows.zip

events.js:71
        throw arguments[1]; // Unhandled 'error' event
                       ^
Error: connect ECONNREFUSED
    at errnoException (net.js:770:11)
    at Object.afterConnect [as oncomplete] (net.js:761:19)
npm ERR! phantomjs@1.8.1-3 install: `node install.js`
npm ERR! `cmd "/c" "node install.js"` failed with 1
npm ERR!
npm ERR! Failed at the phantomjs@1.8.1-3 install script.
npm ERR! This is most likely a problem with the phantomjs package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node install.js
npm ERR! You can get their info via:
npm ERR!     npm owner ls phantomjs
npm ERR! There is likely additional logging output above.

npm ERR! System Windows_NT 6.1.7601
npm ERR! command "c:\\Program Files (x86)\\nodejs\\node.exe" "c:\\Program Files
(x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "grunt-contrib-quni
t" "--save-dev"
npm ERR! cwd c:\johnprojects\tablet\htdocs\mini-app-sandbox
npm ERR! node -v v0.8.21
npm ERR! npm -v 1.1.32
npm ERR! code ELIFECYCLE
npm ERR! message phantomjs@1.8.1-3 install: `node install.js`
npm ERR! message `cmd "/c" "node install.js"` failed with 1
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR!     c:\johnprojects\tablet\htdocs\mini-app-sandbox\npm-debug.log
npm ERR! not ok code 0
4

3 に答える 3

2

なぜそうなったのかはわかりませんでしたが、phantomjs zip ファイルのステップで「npm install」からの ECONNREFUSED エラーを回避するには、zip ファイルを個別に手動でダウンロードし、ダウンロードした tmp ディレクトリに配置するだけで済みました。に書き込もうとしています。

于 2013-09-25T21:41:54.907 に答える
1

phantomjsはまだノード0.10と互換性がありません。0.08が必要です: https ://github.com/yeoman/yeoman/issues/986

于 2013-03-18T16:53:06.303 に答える
0

phantomjs@1.9.15 が依存関係にある grunt-html-snapshot@0.6.1 (html-snapshots => 同じ問題) をインストールしているときに、同様の問題に遭遇しました。

ただし、まったく同じエラーは発生しませんでした。あなたが得た場所

Error: connect ECONNREFUSED

私は得た

Error: EPERM, operation not permitted

私の問題は、github HEREで見つけることができる「BohemMedia」コメントを行うことで修正された許可の問題でした

他のアプローチは私にはうまくいきませんでした。

あなたの問題は、接続の拒否です。接続をブロックする可能性のあるファイアウォールやその他のセキュリティ プログラムをオフにしてみましたか?

于 2015-02-12T10:53:17.273 に答える