7

私は最近 Windows から Mac に移行したばかりで、現在ツールをセットアップしようとしています。

最初に自作を使用してノードをインストールしましたが、エラーが発生していました(まだ持っているものと同じです)。後で自作を使用してノードを削除し、ノードの Web サイトから pkg を使用してインストールしました。

コマンドラインとnpmでノードにアクセスできます。問題は、プロジェクトにモジュールをローカルにインストールしようとすると、次のようになることです。

npm install grunt-contrib

Error extracting archive { [Error: ENOENT, open '/Users/davidmckeown/dev/adt-com/node_modules/grunt-contrib/node_modules/grunt-contrib-qunit/node_modules/grunt-lib-phantomjs/node_modules/phantomjs/tmp/phantomjs-1.7.0-macosx.zip']
  errno: 34,
  code: 'ENOENT',
  path: '/Users/davidmckeown/dev/adt-com/node_modules/grunt-contrib/node_modules/grunt-contrib-qunit/node_modules/grunt-lib-phantomjs/node_modules/phantomjs/tmp/phantomjs-1.7.0-macosx.zip' }

そのすぐ上にある別のメッセージには、次の内容が含まれます。

npm ERR! phantomjs@0.2.6 install: `node install.js`
npm ERR! `sh "-c" "node install.js"` failed with 8
npm ERR!
npm ERR! Failed at the phantomjs@0.2.6 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 Darwin 12.2.1
npm ERR! command "node" "/usr/local/bin/npm" "install" "grunt-contrib"
npm ERR! cwd /Users/davidmckeown/dev/adt-com
npm ERR! node -v v0.10.0
npm ERR! npm -v 1.2.14
npm ERR! code ELIFECYCLE

ここで問題を引き起こしている原因を突き止める助けは素晴らしいでしょう。これは、私が知る限り、他のモジュールでも発生します。

4

2 に答える 2

27

npm cache clean

または su の下にインストールされている場合

sudo npm cache clean

于 2013-06-26T15:47:09.060 に答える
1

grunt qunit パッケージで 5 か月前に問題が発生しました - https://github.com/gruntjs/grunt-lib-phantomjs/issues/5

この特定のパッケージをインストールしてみてください:

sudo npm install grunt-contrib-qunit

インストールしたパッケージは、多くのパッケージのバンドルです。qunit パッケージのバージョンは、このバンドルの最新バージョンに明示的に更新されていません。そのため、npm キャッシュをクリアすると、この問題が解決する可能性があります。

于 2013-05-10T20:00:28.730 に答える