Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Meteor is not recognized as an internal or external command, operable program or batch file on Windows 8.1

This is the output that is showing when I'm trying to use meteor on the command line: '"C:\Users\Javier\AppData.meteor\packages\meteor-tool\1.1.8t-os.windows.x86_32\meteor.bat"'

I don't know what to do and I don't know how to "play" with the path. Nothing.

like image 764
jamc92 Avatar asked Sep 26 '15 19:09

jamc92


People also ask

How do I fix not recognized as an internal or external command operable program or batch file?

You can resolve this issue in three ways: First, use the full path of the executable file to launch the program. Second, add the program path to Windows environment variables. Finally, move the files to the System32 folder.

What is not recognized as an internal command in CMD?

The “is not recognized as an internal command” error usually occurs because the computer can't find the executable that you're asking it to launch. However, you can provide it with the full path to your executable file and it should then be able to run it without any issues. Launch a Command Prompt window on your PC.

Is not Recognised as an internal or external command?

The “Python is not recognized as an internal or external command” error is encountered in the command prompt of Windows. The error is caused when Python's executable file is not found in an environment variable as a result of the Python command in the Windows command prompt.

Is not recognized as an internal or external command operable program or batch file C++?

If you get an error such as "'cl' is not recognized as an internal or external command, operable program or batch file," error C1034, or error LNK1104 when you run the cl command, then either you are not using a developer command prompt, or something is wrong with your installation of Visual C++.


1 Answers

On my Windows 10 machine after installing meteor, path was set automatically, but meteor command was not working. I found there was backslash at the end of path variable, I removed it and meteor command worked. See the example below:

BEFORE

C:\Users\<username>\AppData\Local\.meteor\

AFTER

C:\Users\<username>\AppData\Local\.meteor
like image 71
Lokinder Singh Chauhan Avatar answered Sep 20 '22 02:09

Lokinder Singh Chauhan