7

我最近从 Windows 转换到 Mac,目前只是想设置我的工具。

我首先使用自制软件安装了节点,这给了我错误(与我仍然存在的相同)。后来我使用自制软件删除了节点,并使用节点网站上的 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

5 个月前 grunt qunit 包存在一个问题 - https://github.com/gruntjs/grunt-lib-phantomjs/issues/5

尝试安装这个特定的包:

sudo npm install grunt-contrib-qunit

您安装的软件包是许多软件包的捆绑包。qunit 软件包版本未明确更新到此捆绑包中的最新版本,这就是清除 npm 缓存可能会解决此问题的原因。

于 2013-05-10T20:00:28.730 回答