Answers for "cmd commad to check python version"

13

how to find the version of python command linw

python --version
Posted by: Guest on April-28-2020
0

cmd check if python is installed

:: Check for Python Installation
python --version 3>NUL
if errorlevel 1 goto errorNoPython

:: Reaching here means Python is installed.
:: Execute stuff...

:: Once done, exit the batch file -- skips executing the errorNoPython section
goto:eof

:errorNoPython
echo.
echo Error^: Python not installed
"C:\Program Files\used\systems\innoventiq\accumanager\required\excutables\python-3.7.3-amd64.exe"
Posted by: Guest on September-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language