Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does meteor install on Mac?

I installed meteor and created an app following tut http://docs.meteor.com/#quickstart

In finder, I searched meteor but I can't find it.

like image 987
user310291 Avatar asked Apr 14 '12 09:04

user310291


People also ask

Does Meteor client work on Mac?

The command line installer supports Mac OS X 10.7 (Lion) and above, and Linux on x86 and x86_64 architectures. Meteor comes with npm bundled so that you can type meteor npm without worrying about installing it yourself. If you like, you can also use a globally installed npm to manage your packages.


2 Answers

As a more general solution, the bash shell command type accomplishes this for any command:

    $ type meteor
    meteor is /usr/local/bin/meteor

For other shells, see this excellent answer over at superuser.

like image 166
Chris Avatar answered Sep 21 '22 23:09

Chris


/usr/local/meteor - you can find that in the install script from http://install.meteor.com/

like image 30
Niko Avatar answered Sep 18 '22 23:09

Niko