admin管理员组

文章数量:1344941

I've installed Meteor Js by following the instructions but still it won't work. It will create an app but won't run it. It always says : You're not in a Meteor project directory!

I've installed Meteor Js by following the instructions but still it won't work. It will create an app but won't run it. It always says : You're not in a Meteor project directory!

Share Improve this question edited Mar 25, 2014 at 23:21 Kyle Savage 7821 gold badge5 silver badges19 bronze badges asked Mar 8, 2013 at 19:01 monimoni 2015 silver badges14 bronze badges 4
  • Could you give a bit more detail on what you're doing exactly? Did you do the meteor create app thing? and do you get other errors? – Tarang Commented Mar 9, 2013 at 0:38
  • Word of gentle advice: you can run it on Windows as per Umrem's answer below, but you'll struggle with thing like Meteorite not being supported (yet) etc. I'd remend a VM if you can, ideally a dual boot. – Stephan Tual Commented Mar 10, 2013 at 18:47
  • I installed meteor in my program files. Then I open my mand promtp and go into c:/ – moni Commented Mar 12, 2013 at 13:33
  • meteor create app1 works cd app1 works then when I type metro it says : youre not in a meteor project directory – moni Commented Mar 12, 2013 at 13:33
Add a ment  | 

2 Answers 2

Reset to default 9

I just installed Meteor on Windows 8 with success and developing my first application with it.

First you go to http://win.meteor./ Second you do what there is written.

Don't forget to reboot and set node.exe to Windows 7 Compatibility.

After that you open cmd.exe

meteor create sample

cd sample

meteor

Then find your myapp folder. Just search your puter for it and use that directory location.

For me, it was "cd users/myname/myapp"

Then I could simply "meteor run myapp" and I was fine.

本文标签: javascriptHow do you run Meteor on Windows 8Stack Overflow