Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

installing meteor on windows 10

Tags:

meteor

I've installed meteor through the official installer as the image shows:

Meteor windows installer

But the command is still not working on my terminal even when I restart the machine! The .meteor folder on my /users/$USER$ folder is non-existent. How can I install meteor under Windows 10?

like image 617
Vinicius Ataide Avatar asked Aug 05 '15 17:08

Vinicius Ataide


3 Answers

You need to open a command prompt with administrator privileges. So...

Start/Windows Icon > type "cmd" > right click on command prompt and choose "run as administrator" > Choose yes at the prompt > Now try "meteor" at the command prompt

like image 87
Richard Legg Avatar answered Nov 20 '22 10:11

Richard Legg


I had the same problem, this is what I did.

I already had git installed on my computer for other reasons, but make sure you have git and 7z installed. Additionally, and I don't know if it's because my migration to Windows 10 wasn't horribly successful, but make sure that 7z is in the path. No need to reboot, just close the command window and reopen. Type 'path' command and it should have the 7z at the end where you added it.

Once you're ready, get where you want to install meteor. I just used my home directory, then type 'git clone http://github.com/meteor/meteor.git'

That will download the latest meteor from GitHub into a directory named meteor, once it's finished then you'll want to add that directory to your path as well. Again, close the command prompt window and reopen and use the path command to verify the path is there, and then start working on your new meteor projects.

like image 10
arythiafan Avatar answered Nov 20 '22 10:11

arythiafan


  1. Run as administrator
  2. If you go under system32, cd to user/<your_name>
  3. meteor create myapp

I have done this on windows 10 and it's 100% working for me.

like image 3
Tito Avatar answered Nov 20 '22 10:11

Tito