Meteor JS是否需要在安装Meteor之前在Ubuntu上安装NodeJS? 我已经尝试在没有安装NodeJS的情况下在Ubuntu 14.04上安装Meteor,但它不起作用。我按照我在此链接上找到的说明进行操作 Meteor Tutorial
感谢。
答案 0 :(得分:4)
是的,您需要在安装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
最诚挚的问候。