17

我正在尝试在 cygwin 上使用 NPM,但不断收到以下错误:

ERR! tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm" tar: Unexpected EOF in archive
ERR! tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm" tar: Unexpected EOF in archive
ERR! tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm" tar: Error is not recoverable: exiting now
ERR! tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm" 
ERR! Failed unpacking /tmp/npm-1305893882865/1305893885765-0.008730818051844835/tmp.tgz
ERR! couldn't unpack /tmp/npm-1305893882865/1305893885765-0.008730818051844835/tmp.tgz to /tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents
verbose about to build /home/Tema/node_modules/express
ERR! error installing express@2.3.5 Error: Failed tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm"

我用谷歌搜索了一些建议(npm cache clean 和 rebaseall),但没有任何帮助。那么,有没有办法在 Cygwin 中使用 NPM?

4

5 回答 5

3
  1. 吹走 tmp 目录

    rm -R /tmp/*
    
  2. 清除 npm 的缓存

    npm cache clean
    
  3. 退出当前的 shell 并启动 ash 或 dash shell(从 cygwin/bin 中)

  4. 在 ash(或 dash)shell 中执行 rebaseall 命令。

    /bin/rebaseall -v
    
  5. 退出并重新启动一个新的 bash shell。

  6. 再次尝试您的 npm 命令。

    npm install <package>
    
于 2011-07-21T22:20:36.033 回答
2

我自己也经常遇到同样的问题。

我不知道如何解决它,但我知道错误是不定期发生的。如果您尝试再次安装 npm 包,它可能会起作用。只需继续重试,它最终会起作用。

当它卡在 100% cpu 时,只需取消它 (ctrl+c) 并重试。此外,在安装软件包时不要切换到另一个窗口。

您也可以在node_modules文件夹中手动安装带有 wget 和 tar 的软件包。

于 2011-06-23T13:18:12.953 回答
1

/usr/local/lib/node_modules/npm/lib/utils/tar.js 的小补丁

--- tar.js.old 2011-07-15 15:23:09.205440100 +0700
+++ tar.js 2011-07-15 15:25:58.327113300 +0700
@@ -20,6 +20,7 @@
, relativize = require("./relativize")
, cache = require("../cache")
, excludes = require("./excludes")
+ , child_process = require("child_process");

exports.pack = pack
exports.unpack = unpack
@@ -168,13 +169,17 @@
//console.error(npm.config.get("gzipbin")+" --decompress --stdout "
// +tarball+" | "+npm.config.get("tar")+" -mvxpf - -o -C "
// +tmp)
- pipe( spawn( npm.config.get("gzipbin")
- , ["--decompress", "--stdout", tarball]
- , process.env, false )
- , spawn( npm.config.get("tar")
- , ["-mvxpf", "-", "-o", "-C", tmp]
- , process.env, false )
- , function (er) {
+ // pipe( spawn( npm.config.get("gzipbin")
+ // , ["--decompress", "--stdout", tarball]
+ // , process.env, false )
+ // , spawn( npm.config.get("tar")
+ // , ["-mvxpf", "-", "-o", "-C", tmp]
+ // , process.env, false )
+ // , function (er) {
+
+ child_process.exec(npm.config.get("gzipbin")+" --decompress --stdout "
+ +tarball+" | "+npm.config.get("tar")+" -mvxpf - --no-same-owner -C " +tmp
+ , function (er, stdout, stderr) {
// if we're not doing ownership management,
// then we're done now.
if (er) return log.er(cb,
于 2011-07-15T08:53:52.613 回答
1

尝试使用以下命令删除临时文件:

$ rm /tmp/npm-*

然后再次安装。为我工作。

于 2011-07-06T09:28:49.727 回答
0

如果发生这种情况,请尝试从 .npm 目录(可能位于主目录:~/.npm)中删除部分提取的模块,然后重试(两次或更多次)。

于 2011-09-05T20:10:15.223 回答