简体   繁体   English

Meteor JS安装在Ubuntu 14.04.x上

[英]Meteor JS install on Ubuntu 14.04.x

Does Meteor JS require installation of NodeJS on Ubuntu before installation of Meteor? 在安装Meteor之前,Meteor JS是否需要在Ubuntu上安装NodeJS? I have tried install Meteor on Ubuntu 14.04 without install NodeJS and it doesn't work. 我已经尝试在没有安装NodeJS的情况下在Ubuntu 14.04上安装Meteor,但它不起作用。 I followed the instructions which I found on this link Meteor Tutorial . 我按照我在此链接Meteor教程中找到的说明进行操作。

Thanks. 谢谢。

Yes, you need to install nodejs before install Meteor. 是的,您需要在安装Meteor之前安装nodejs。

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

For Node.js 对于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

Best Regards. 最好的祝福。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM