Answers for "how to find out if python library is installed"

8

how to find where python modules are installed

# this will show where numpy is installed
pip show numpy
Posted by: Guest on July-12-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

Code answers related to "how to find out if python library is installed"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language