Reputation: 3198
whats is the current best practice for installing multiple versions of python on snow leopard?
any thoughts ?
Upvotes: 0
Views: 1011
Reputation: 11950
Snow leopard already contains python 2.5 and python 2.6, no issues there.
If you require obscure modifications to the python installations, just compile your own, and put it in some place where it won't conflict with the system python. (I suggest /opt/your-pythonx.y).
As an aside, check: "man python" on mac to see how to use the 32-bit, or 64-bit options if that turns out to be neccessary. (Sometimes it is for c modules)
Upvotes: 2
Reputation: 152
I use the python_select
utility to switch between versions (it takes care of all the paths and links). It's easy to install with MacPorts or fink, so I would guess you can install the same utility with Homebrew.
Upvotes: 0