0

I was starting meteor project and I found this error.

'meteor' is not recognized as an internal or external command,
operable program or batch file.

How can I solve this problem? I am using windows 10 system.

Christian Fritz
  • 20,641
  • 3
  • 42
  • 71

2 Answers2

0

Same message today on fresh meteor install on Windows 10, Node 16, found meteor path with a trailing slash in the PATH environment variable.

C:\Users\<user>\AppData\Local\.meteor/;

Removed the trailing slash = meteor found.

Toni
  • 1,555
  • 4
  • 15
  • 23
Didier
  • 1
-1

It's likely you don't have meteor in your windows path, and so your shell doesn't know where to find it.

You'll need to add it and then you should be able to use it as usual. Your meteor path should be something like C:\Users\<username>\AppData\Local\.meteor. If you're not sure how to add it to your PATH, here's a good link which explains it well

How to add a folder to `Path` environment variable in Windows 10 (with screenshots)

fippi
  • 504
  • 3
  • 10
  • Also, to troubleshoot, you can try running using the full path, e.g. `C:\Users\\AppData\Local\.meteor\meteor create simple-todos` – fippi Mar 03 '21 at 01:22