Difference between revisions of "Python"
From WPKG | Open Source Software Deployment and Distribution
(Add upgrade/remove commands, and update to version 2.5.1) |
(Add to "MSI Packages" category) |
||
Line 26: | Line 26: | ||
[[category:Silent Installers]] | [[category:Silent Installers]] | ||
+ | [[category:MSI Packages]] |
Revision as of 23:57, 31 January 2008
Python 2.4 and higher are available as MSI packages, which are documented at http://www.python.org/download/releases/2.5/msi/
<?xml version="1.0" encoding="UTF-8"?> <packages> <package id="python" name="Python" revision="2511" priority="0" reboot="false"> <check type="uninstall" condition="exists" path="Python 2.5.1"/> <install cmd='msiexec /qn /i "%SOFTWARE%\python\python-2.5.1.msi" ALLUSERS=1'/> <upgrade cmd='msiexec /qn /i "%SOFTWARE%\python\python-2.5.1.msi" ALLUSERS=1'/> <remove cmd='msiexec /qn /x{31800004-6386-4999-a519-518f2d78d8f0}'/> </package> </packages>