【问题标题】:Meteor JS install on Ubuntu 14.04.xMeteor JS 在 Ubuntu 14.04.x 上安装
【发布时间】:2015-08-03 01:33:52
【问题描述】:

在安装 Meteor 之前,Meteor JS 是否需要在 Ubuntu 上安装 NodeJS? 我尝试在 Ubuntu 14.04 上安装 Meteor 而不安装 NodeJS,但它不起作用。我按照我在此链接上找到的说明进行操作 Meteor Tutorial.

谢谢。

【问题讨论】:

    标签: node.js ubuntu meteor


    【解决方案1】:

    是的,你需要在安装 Meteor 之前安装 nodejs。

    $ sudo apt-get update
    $ sudo apt-get install curl
    $ curl https://install.meteor.com | sh
    

    对于 Node.js

    $ sudo apt-get install python-software-properties python g++ make
    $ sudo add-apt-repository ppa:chris-lea/node.js
    $ sudo apt-get update
    $ sudo apt-get install nodejs
    

    最好的问候。

    【讨论】:

    • 谢谢亚历克斯。感谢您快速重播。
    • 其实你不需要安装nodeJS。那个 curl 魔法应该为你安装 nodeJS。你只需要 curl。
    猜你喜欢
    • 1970-01-01
    • 2016-04-03
    • 2014-07-24
    • 2015-01-30
    • 2014-12-29
    • 2014-11-22
    • 2017-05-21
    • 1970-01-01
    • 2015-05-31
    相关资源
    最近更新 更多