404在Mac OS X 10.10.5上安装Meteor时出错

时间:2015-09-22 00:04:57

标签: meteor

我试图使用Meteor网站上的命令在我的Mac上安装meteor.js:

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

但是我得到了:

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  6117    0  6117    0     0   3645      0 --:--:--  0:00:01 --:--:--  3643
Downloading Meteor distribution

curl: (22) The requested URL returned error: 404 Not Found
Installation failed.

尝试使用谷歌搜索但无法找到答案,任何人都知道发生了什么?

3 个答案:

答案 0 :(得分:4)

所以,不确定这是否是官方解决方案,但我能够通过首先安装Meteor 1.1.0.3获得Meteor 1.2,这是我在Mac OS X https://d3sqy0vbqsdhku.cloudfront.net/上看到的最新版本(或任何OS)。

但是,要获得该版本,我首先必须将shell代码从https://install.meteor.com保存到本地文件,然后手动更改

第25行

RELEASE="1.2"到RELEASE =" 1.1.0.3"

使用此版本安装Meteor后,我在终端

中运行了手册meteor update

我真的不知道为什么会这样,但如果有其他人看到这个问题,那么希望这有帮助

答案 1 :(得分:0)

我已修复该版本以便你们下载

安装最新流星的解决方案:

$ curl http://augmify.com/meteorInstall.sh | sh

你应该看到这个结果:

    % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left          Speed
    100  6122  100  6122    0     0   654k      0 --:--:-- --:--:-- --:--:--          664k
    Downloading Meteor distribution
    ########################################################################                 100.0%

    Meteor 1.1.0.3 has been installed in your home directory (~/.meteor).
    Writing a launcher script to /usr/local/bin/meteor for your convenience.

    To get started fast:

      $ meteor create ~/my_cool_app
      $ cd ~/my_cool_app
      $ meteor

    Or see the docs at:

      docs.meteor.com

然后做

$ meteor update

你应该看到这个结果:

    Installed. Run 'meteor update --release 1.2.0.4-logging.0' inside of a particular project directory to update that project to Meteor 1.2.0.4-logging.0.

答案 2 :(得分:0)

我们首先需要知道此命令的作用

首先,它使用此链接https://install.meteor.com/下载文件。 然后执行它就可以了。

因此,请阅读sh文件,

有一个下载文件的链接。它的 *

https://static-meteor.netdna-ssl.com/packages-bootstrap/${RELEASE}/meteor-bootstrap-${PLATFORM}.tar.gz

此链接与您的系统有关。 $ {RELEASE} 是您要下载的版本, $ {PLATFORM} 是您要安装到其中的系统,

它可以是os.linux.x86_32 os.linux.x86_64。

检查系统和文件,然后直接在浏览器中下载Meteor。

**这个问题可能已经很老了,但我仍然面临着同样的问题,并且我以这种方式解决了这个问题。