简体   繁体   中英

Meteor JS install on Ubuntu 14.04.x

Does Meteor JS require installation of NodeJS on Ubuntu before installation of Meteor? I have tried install Meteor on Ubuntu 14.04 without install NodeJS and it doesn't work. I followed the instructions which I found on this link Meteor Tutorial .

Thanks.

Yes, you need to install nodejs before install Meteor.

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

For 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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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