批处理文件以检查是否安装了Python

时间:2011-02-07 10:59:30

标签: windows installer

我编写了一个批处理脚本来检查是否安装了Python,如果没有安装,它会启动包含在与自身相同的文件夹中的Python安装程序。

我正在使用以下代码:

reg query "hkcu\software\Python 2.6"

if ERRORLEVEL 1 GOTO NOPYTHON 

:NOPYTHON
ActivePython-2.6.4.8-win32-x86.msi

reg query "hklm\SOFTWARE\ActiveState\ActivePerl\" 1>>Output_%date%_%time%.log 2>&1
if ERRORLEVEL 1 GOTO NOPERL 

reg query "hklm\SOFTWARE\Gtk+"
if ERRORLEVEL 1 GOTO NOPYGTK 


:NOPERL
ActivePerl-5.10.1.1006-MSWin32-x86-291086.msi 1>>Output_%date%_%time%.log 2>&1

:NOPYGTK
pygtk_windows_installer.exe

但在某些情况下,即使安装了Python,安装程序也会启动。这有什么问题?

3 个答案:

答案 0 :(得分:13)

对于那些只想简单检查是否安装了Python并且可以在不进入注册表的情况下执行的人,在批处理文件中:

:: Check for Python Installation
python --version 2>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

答案 1 :(得分:8)

注册表查询完成后,您的代码不会分支。无论第一个if ERRORLEVEL评估的内容如何,​​下一步始终是进入:NOPYTHON标签。

Ed:这是一个如何让它工作的例子。我的想法是添加另一个goto语句,如果需要,它将跳过:NOPYTHON标签。

reg query "hkcu\software\Python 2.6"  
if ERRORLEVEL 1 GOTO NOPYTHON  
goto :HASPYTHON  
:NOPYTHON  
ActivePython-2.6.4.8-win32-x86.msi  

:HASPYTHON  
reg query "hklm\SOFTWARE\ActiveState\ActivePerl\" 1>>Output_%date%_%time%.log 2>&1  

答案 2 :(得分:0)

这是我的方法。

python -V命令将返回版本号,借助于/v开关的find命令将搜索Python的遗漏,并且还有一个普通的没有该开关的命令

@echo off & title %~nx0 & color 5F

goto :DOES_PYTHON_EXIST

:DOES_PYTHON_EXIST
python -V | find /v "Python" >NUL 2>NUL && (goto :PYTHON_DOES_NOT_EXIST)
python -V | find "Python"    >NUL 2>NUL && (goto :PYTHON_DOES_EXIST)
goto :EOF

:PYTHON_DOES_NOT_EXIST
echo Python is not installed on your system.
echo Now opeing the download URL.
start "" "https://www.python.org/downloads/windows/"
goto :EOF

:PYTHON_DOES_EXIST
:: This will retrieve Python 3.8.0 for example.
for /f "delims=" %%V in ('python -V') do @set ver=%%V
echo Congrats, %ver% is installed...
goto :EOF