I have cloned the meteor repository from github to c9. But when I type meteor in the console it reads -- bash: meteor: command not found.
Asked
Active
Viewed 206 times
1
-
Cloud9 have canned Meteor machine, you need to create a new workspace from that template, not simply a Node workspace. Anyway, what you should do is to install Meteor. Simply follow the "curl ... | sh" example from https://meteor.com. – rishat Jul 04 '16 at 20:07
-
@RishatMuhametshin - The meteor template doesn't exist anymore: https://community.c9.io/t/meteor-workspace-type-not-listed-when-i-create-a-new-workspace/6128/6 The default install procedure is the way to go (as you also mention). – Sphinxxx Aug 03 '16 at 22:28
1 Answers
1
You should "Create a new workspace" that clone from https://github.com/meteor/meteor.git
.
After it's completed, using curl https://install.meteor.com/ | sh
.
You could run your project by meteor run --port=$IP:$PORT
if you have a problem about PORT and IP.
P/s: I solved it by this way!
#Source: Meteor with cloud9