I don't understand why the MSI installers are gone for ActivePython, but they are, and it broke an unattended install setup on Windows. I need to have 32 and 64-bit versions installed and specifying INSTALLDIR, TARGETDIR, DEFAULTALLUSERSTARGETDIR doesn't work; the path stays at the default of c:\Python27 for both 32 and 64-bit installs.
I also pulled the MSI from c:\windows\installers and tried that approach, but the MSI reports it requires a bootstrapper to be used.
Has anyone had success with this?
So, the parameter is now called APPDIR which is referenced in the documentation (http://docs.activestate.com/activepython/2.7/get/windows/index.html). The documentation does still refer to the MSI, however the new .EXE installer is just a wrapper on the MSI, so existing MSI parameters like
/qnfor silent install still work.If you'd like to install the 64-bit into its own folder for example, you can use:
Hope that helps!