py is not recognized as an internal or external operable program or batch file

Question:

These are my environment variables:

PATH=C:Program FilesCommon FilesOracleJavajavapath;C:Program
Files (x86)Common
FilesOracleJavajavapath;C:ProgramDataOracleJavajavapath;C:WINDOWSsystem32;C:WINDOWS;C:WINDOWSSystem32Wbem;C:WINDOWSSystem32WindowsPowerShellv1.0;C:WINDOWSSystem32OpenSSH;C:Program
Files (x86)GitExtensions;C:Program FilesCommon
FilesOracleJavajavapath;C:Program Files (x86)Common
FilesOracleJavajavapath;C:ProgramDataOracleJavajavapath;C:WINDOWSsystem32;C:WINDOWS;C:WINDOWSSystem32Wbem;C:WINDOWSSystem32WindowsPowerShellv1.0;C:WINDOWSSystem32OpenSSH;C:Program
Files
(x86)GitExtensions;C:WINDOWSsystem32configsystemprofileAppDataLocalMicrosoftWindowsApps;C:Usersoprisvlad2AppDataLocalMicrosoftWindowsApps;C:Usersoprisvlad2AppDataLocalProgramsGitcmd;C:Program
FilesJavajdk-17bin;C:Python27Scripts;C:Python27;C:ProgramDataMicrosoftWindowsStart
MenuProgramsPython 2.7;

The C:Python27 and C:Python27Scripts are added but "py" is still unrecognized.
I restarted my machine several times. I have look all over for solutions but none of them worked for me. I prefer something that works from the command prompt.

Asked By: Opr Vld

||

Answers:

The py.exe executable is not found in the paths specified to windows environment. py.exe is a launcher for detecting specific python installations.

Try python to launch the default python.

Make sure that the paths to the python executable file are placed before the the windows app dir, otherwise it could lead to windows triggering to-be-installed python.

C:Python27Scripts;C:Python27;C:ProgramDataMicrosoftWindowsStart MenuProgramsPython 2.7;C:WINDOWSsystem32configsystemprofileAppDataLocalMicrosoftWindowsApps;C:Usersoprisvlad2AppDataLocalMicrosoftWindowsApps

If you have py.exe somewhere, add the absolute path to evironment variable. Usually for newer python versions, if you install python via windows installer, the py is automatically added to the env variables.

Answered By: Donut
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.