Difference between revisions of "Python"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
 
Line 3: Line 3:
 
This configuration installs to C:\Programme\Python and not to the default location C:\Python in order to show how to configure an arbitratry path:
 
This configuration installs to C:\Programme\Python and not to the default location C:\Python in order to show how to configure an arbitratry path:
  
<package
+
<package
 
     id="python"
 
     id="python"
 
     name="Python"
 
     name="Python"
Line 13: Line 13:
 
         <exit code="0" />
 
         <exit code="0" />
 
     </install>
 
     </install>
</package>
+
</package>

Revision as of 17:54, 15 September 2005

This installer can be used for the distutils Python distribution (www.python.org). AFAIK it will not work for Python < 2.4.

This configuration installs to C:\Programme\Python and not to the default location C:\Python in order to show how to configure an arbitratry path:

<package
   id="python"
   name="Python"
   revision="0"
   reboot="false"
   priority="0">
   <check type="file" condition="exists" path="C:\Programme\Python\python.exe" />
   <install cmd="msiexec /q /i \\server\wpkg\python\python-2.4.1.msi TARGETDIR="C:\Programme\Python" ALLUSERS=1 REBOOT=ReallySuppress">
       <exit code="0" />
   </install>
</package>