ubuntu环境下快速安装meteor

目录:

      • Step1:手动下载压缩包
      • Step2:更改脚本
      • Step3:运行脚本
      • 参考文章:

根据官网指导 meteor install,下载meteor需要使用以下命令:

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

但是这种下载速度实在太慢,难以忍受,于是撸起袖子自己干。

Step1:手动下载压缩包

我们将官网提供的脚本命令导出到本地保存为 install.meteor.sh

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

然后使用编辑器 vim/nano/gedit 打开 install.meteor.sh,找到 TARBALL_URL 所在位置:

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

确定自己的系统内核版本,以及自己要安装的 meteor 的版本,例如我的:

RELEASE="1.10.2"
PLATFORM="os.linux.x86_64"

最终,我的下载地址为:

https://static-meteor.netdna-ssl.com/packages-bootstrap/1.10.2/meteor-bootstrap-os.linux.x86_64.tar.gz

将meteor的安装压缩包下载下来,可用浏览器下载,也可用 wget 下载。推荐用迅雷下载然后上传,速度最快。

Step2:更改脚本

修改脚本执行权限:

sudo chmod +x ./install.meteor.sh

修改脚本中的:

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

TARBALL_URL为:

TARBALL_URL="file:///path/to/your/meteor-bootstrap-os.linux.x86_64.tar.gz" 

这个本地地址一定要在浏览器中能够打开看到才行。保存 install.meteor.sh 文件并退出。

Step3:运行脚本

执行安装脚本:

sudo ./meteor.sh

秒成。安装完成!


参考文章:

  • meteor下载太慢!3步教你搞定meteor下载和安装。: https://blog.csdn.net/zhujuyu/article/details/79217960
  • ubuntu环境下快速安装meteor开发环境: http://blog.sina.com.cn/s/blog_63a2037f0102yqn7.html

你可能感兴趣的:(前端)