Python on Mac: Fink? MacPorts? Builtin? Homebrew? Binary installer?

Posted by BastiBechtold on Stack Overflow See other posts from Stack Overflow or by BastiBechtold
Published on 2011-02-21T15:21:52Z Indexed on 2011/02/21 15:25 UTC
Read the original article Hit count: 236

Filed under:
|
|
|
|

For the last few days, I have been trying to use Python for some audio development.

The thing is, Mac OSX does not handle uninstalling stuff well. Actually, there is no way to uninstall anything. Once it is on your system, you better pray that it didn't do any funny stuff. Hence, I don't really want to rely on installer packages for Python.

So I turn to Homebrew and install Python using Homebrew. Works fabulously. Using pip, Numpy, SciPy, Matplotlib were no (big) problem, either. Now I want to play audio. There is a host of different packages out there, but pip does not seem willing to install any. But, there is a binary distribution for PyGame, which I guess should work with the built-in Python.

Hence my question: What would you do? Would you just install the binary distributions and hope that they interoperate well and never need uninstalling? Would you hack your way through whichever package control management system you prefer and deal with its problems? Something else?

© Stack Overflow or respective owner

Related posts about python

Related posts about osx