Closed. This question is off-topic 。它目前不接受答案。












想改善这个问题吗? Update the question 所以它是堆栈溢出的 on-topic

9年前关闭。



Improve this question




使用以下命令安装新 Node
sudo apt-get install git-core curl build-essential openssl libssl-dev
git clone https://github.com/joyent/node.git && cd node
./configure
make
make install
node -v
v0.5.0-pre

工作没有故障。当我尝试安装 NPM 时,我得到:
>/tmp/node$ curl http://npmjs.org/install.sh | sudo sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  3874  100  3874    0     0   3033      0  0:00:01  0:00:01 --:--:-- 22923
fetching:

gzip: stdin: unexpected end of file
tar: This does not look like a tar archive
tar: Exiting with failure status due to previous errors
It failed
>

我使用的是 VirtualBox NAT 网络,没有特殊的代理/防火墙。

尝试 curl -s -L http://registry.npmjs.org/npm/latest 我得到 {"error":"ucs","reason":"{bad_utf8_character_code}"}这可能暗示 NPM 方面的问题?

拉尔夫

最佳答案

试试这个:

git clone http://github.com/isaacs/npm.git
cd npm
sudo make install

关于ubuntu - NPM 安装问题 Ubuntu 11.04,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6383413/

10-16 23:41