Difference between revisions of "Python"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (Use new syntax highlighting plugin for package xml)
m
Line 1: Line 1:
 +
This is a silent installer for Python.
 +
 
[http://www.python.org Python] 2.4 and higher are available as MSI packages, which are documented at http://www.python.org/download/releases/2.5/msi/
 
[http://www.python.org Python] 2.4 and higher are available as MSI packages, which are documented at http://www.python.org/download/releases/2.5/msi/
  

Revision as of 23:03, 4 February 2008

This is a silent installer for Python.

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>