无法在Ubuntu VM上安装meteorite

时间:2014-01-11 20:46:59

标签: ubuntu meteor virtualbox meteorite

我运行Win7并在Oracle VM VirtualBox 4.3.6中安装Ubuntu 12.04.3。

我做的第一件事就是尝试安装陨石,但是会​​收到以下错误:

npm install -g meteorite
npm http GET https://registry.npmjs.org/meteorite

npm ERR! Error: failed to fetch from registry: meteorite
npm ERR!     at /usr/share/npm/lib/utils/npm-registry-client/get.js:139:12
npm ERR!     at cb (/usr/share/npm/lib/utils/npm-registry-client/request.js:31:9)
npm ERR!     at Request._callback (/usr/share/npm/lib/utils/npm-registry-client/request.js:136:18)
npm ERR!     at Request.callback (/usr/lib/nodejs/request/main.js:119:22)
npm ERR!     at Request.<anonymous> (/usr/lib/nodejs/request/main.js:212:58)
npm ERR!     at Request.emit (events.js:88:20)
npm ERR!     at ClientRequest.<anonymous> (/usr/lib/nodejs/request/main.js:412:12)
npm ERR!     at ClientRequest.emit (events.js:67:17)
npm ERR!     at HTTPParser.onIncoming (http.js:1261:11)
npm ERR!     at HTTPParser.onHeadersComplete (http.js:102:31)
npm ERR! You may report this log at:
npm ERR!     <http://bugs.debian.org/npm>
npm ERR! or use
npm ERR!     reportbug --attach /home/rune/npm-debug.log npm
npm ERR! 
npm ERR! System Linux 3.8.0-29-generic
npm ERR! command "node" "/usr/bin/npm" "install" "-g" "meteorite"
npm ERR! cwd /home/rune
npm ERR! node -v v0.6.12
npm ERR! npm -v 1.1.4
npm ERR! message failed to fetch from registry: meteorite
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /home/rune/npm-debug.log
npm not ok

4 个答案:

答案 0 :(得分:14)

显然,Meteor安装自己的节点和npm,你不应该将它们与系统或其他节点或npm安装混合。

我正在搜索这个很长一段时间并创建/销毁了许多EC2实例,直到我找到解决方案。

curl https://install.meteor.com | /bin/sh之后只需导出路径,这样你的shell就可以找到Meteor的npm:

export PATH=~/.meteor/tools/latest/bin:$PATH.bash-profile做了。

这让我可以轻松安装陨石,没有sudo: npm install -g meteorite

我是从https://github.com/oortcloud/meteorite/issues/203

学到的

答案 1 :(得分:5)

以下是我的安装步骤

1:更新并升级您的Ubuntu 根据图像的最新状态,这可能需要一段时间。

sudo apt-get update && sudo apt-get upgrade

2:安装curl

sudo apt-get install curl

3:安装节点    http://lucidservices.com/2013/09/17/install-node-on-ubuntu/

4:安装meteor

curl https://install.meteor.com | sh

5:安装陨石

sudo -H npm install -g meteorite

答案 2 :(得分:0)

现在这发生在我身上多次 - 这个帖子中的解决方案对我有用 - Install NodeJS on Ubuntu 12.10

答案 3 :(得分:0)

请在此处查看答案:error when type 'sudo npm install -g meteorite'

您的npm缓存需要清理。

rm -rf ~/tmp
sudo npm cache clear
sudo npm install -g meteorite