WINDOWS 10
Error
’meteor’ is not recognized as an internal or external command,
operable program or batch file.
Right-clicking the Start button.
From there, select “Advanced system settings” → “Environment Variables”.
Problem:
C:\Users\USER\AppData\Local.meteor\
the problem is the last " \ "
Solution:
C:\Users\USER\AppData\Local.meteor
I hope that help somebody.
1 Like
no this didn’t work for me.
I setup a batch file to do some environment variable setup then launch a command window. Put this in a batch file called meteor.bat. You can easily add other environment variable customization’s required and make them project specific if need be.
REM – append the .meteor path to the existing PATH
SET PATH=%PATH%;"C:\Users<your.user.name>\AppData\Local.meteor"
REM – change to the directory you want to have a new command window created
cd "C:\Users<your.user.name>\AppData\Local.meteor"
REM – create a new command window
start cmd