I want to install a version of Python 2.7.3 that lives under $HOME/Library/Frameworks/Python.framework and $HOME/python.
My goal here is to have a version of Python that is as independent as possible from the Python that comes with OS X Lion.
Among the problems I am trying to avoid by doing this is the buggy Tk framework that comes with the latest versions of OS X.
Therefore, a key sub-goal here is to install new Tcl and Tk frameworks, separate from the system-supplied ones. The ones I want to install come from ActiveState ("Mac OS X (10.5+, x86_64/x86)"), in the form of a *.pkg file.
My questions are:
How can I install the frameworks (contained in the *.pkg file) under
$HOME/Library/Frameworks? (Note: Installer does not offer the choice of specifying this location.)How can I ensure that the Python I install under
$HOMEuses the frameworks under$HOME/Library/Frameworksinstead of those under/System/Library/Frameworksor/Library/Frameworks?