zack
zack

Reputation: 3198

how to install multiple python versions on snow leopard?

whats is the current best practice for installing multiple versions of python on snow leopard?

any thoughts ?

Upvotes: 0

Views: 1011

Answers (2)

Arafangion
Arafangion

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

kosack
kosack

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

Related Questions