vote up 3 vote down star
3

I bought a low-end MacBook about a month ago and am finally getting around to configuring it for Python. I've done most of my Python work in Windows up until now, and am finding the choices for OS X a little daunting. It looks like there are at least five options to use for Python development:

  • "Stock" Apple Python
  • MacPython
  • Fink
  • MacPorts
  • roll-your-own-from-source

I'm still primarily developing for 2.5, so the stock Python is fine from a functionality standpoint. What I want to know is: why should I choose one over the other?

Update: To clarify, I am looking for a discussion of the various options, not links to the documentation. I've marked this as a Community Wiki question, as I don't feel there is a "correct" answer. Thanks to everyone who has already commented for their insight.

flag
What kind of discussion of the various options are you looking for? Please clarify your question. What's wrong with the document at wiki.python.org/moin/MacPython/Leopard? What more would you like to see that's not in this document? – S.Lott Mar 2 at 18:50
1  
The page you linked to has one option: adding IDLE from MacPython to Apple's stock Python script. I would like to see more pros/cons of the various distributions, including personal experiences & reasons why SO users chose a particular distribution. – technomalogical Mar 2 at 20:36
1  
I think you meant to link to wiki.python.org/moin/MacPython/…, but that page is very terse and offers lots of vague terms like "too complicated" and "too many... packages". Plus, the page doesn't list many pros to the alternatives. I'm wondering if there are any. – technomalogical Mar 2 at 20:39

10 Answers

vote up 1 vote down

How about EPD from Enthought? Yes, it's large but it is a framework build and includes things like wxPython, vtk, numpy, scipy, and ipython built-in.

link|flag
vote up 1 vote down

Based on the number of bugs and omissions people have been encountering in Leopard python (just here on SO!), I couldn't recommend that version. e.g., see:

I would choose MacPorts.

It does not eliminate your existing python supplied by Apple since it installs by default in /opt/local/bin (plays nice with it) and plus it is easy to download and install additional python modules (even binary modules that you need to compile!). I use Porticus GUI to maintain my MacPorts installed list of packages, including python.

link|flag
vote up 1 vote down

Apple's supplied python is quite old – my tiger install has 2.3.5. This may not be a problem for you, but you would be missing out on a lot. Also, there is a risk that Apple will update it. I'm not sure if moving from 2.3.5 to (say) 2.4 would cause code to break, but I guess it's possible. This happened to perl people recently: http://developers.slashdot.org/article.pl?sid=09/02/18/1435227

Macpython is a framework build (as is Apple's, I believe). To be honest, I'm not sure exactly what that means, but it's a prerequisite for some modules, in particular wxPython. If you get python from macports or fink, you will not be able to run wxPython (unless you run it through X11).

link|flag
Good point about wxPython, something I had not considered. Apple has improved their Python support recently, with 2.5.2 being installed in Leopard, but the Perl issue is also a good point to raise. – technomalogical Mar 3 at 14:21
vote up 0 vote down

In my windows environment I use Eclipse and PyDev, which works quite well together, even if it's a bit sparse. Apparently the exact same environment is available for the Mac as well, so I suggest downloading Eclipse and using the internal update software function to update PyDev with the URL http://pydev.sourceforge.net/updates/. To look further into PyDev, look here.

link|flag
vote up 3 vote down

I would highly recommend using MacPorts with Porticus for managing your Python installation. It takes a while to build everything, but the advantage is that whatever you build yourself will be built against the same libraries, so you won't have to futz around with statically linked shared objects, etc. if you want your Python stuff to work with Apache, PostgreSQL, etc.

If you choose to go this way, remember to install the python_select port and use it to make your system use the Python installed from MacPorts.

As an added bonus, MacPorts has packages for most main-stream Python eggs, so if you should be able to have MacPorts keep you up-to-date with the latest versions of all that stuff :)

link|flag
+1 I second porticus and macports – popcnt Mar 5 at 5:37
Plus the advantage of really easy installation of PIL (the only I found working). – zgoda Mar 5 at 9:02
vote up 3 vote down

Depends what you are using python for. If you are using MacOS funitionality and things like PyObjC you are probably best of with MacPython or the python provided by Apple.

I use Python on my Mac mostly for development of server side applications which later will run on FreeBSD & Linux boxes. For that I have used fink python for a few years and ever since MacPorts python. With mac ports it is simple to add required c modules (like database driver etc). It's also easy to keep two python Versions (2.5 & 2.6 in my case) around.

I used "compile your own" python to test pre-3.0 python but generally I find managing dependencies to c modules painfull if done by hand.

Thanks to easy_install installing pure python modules is fast and easy for all the options mentioned above.

I was never very much an IDE person. For development I use command line subversion installed by MacPorts, Textmate and occasionaly Expandrive do directly access files on servers. I personally are very dependent on Bicyclerepairman for Textmade to handle my refactoring needs.

Others seem to be very happy with Eclipse & Pydev.

link|flag
vote up 0 vote down

I recommend python (any python?) plus the ipython shell. My most recent experience with MacPython was MacPython 2.5, and I found IDLE frustrating to use as an editor. It's not very featureful, and its' very slow to scroll large quantities of output.

link|flag
vote up 8 vote down

One advantage I see in using the "stock" Python that's included with Mac OS X is that it makes deployment to other Macs a piece of cake. I don't know what your deployment scenario is, but for me this is important. My code has to run on any number of Macs at work, and I try to minimize the amount of work it takes to run my code on all of those systems.

link|flag
Avoid fink -- it installs some extra stuff with which you may not be happy. Use this: wiki.python.org/moin/MacPython/Leopard – S.Lott Mar 2 at 11:06
assuming you can tolerate your python to be equally broken (I've pointed out three examples here on SO in the last two days that people had encountered in the real world) and old on all the Macs, this is a valid point. – popcnt Mar 6 at 16:14
As I implied, it all depends on your deployment requirements. I can't expect all machines here to be updated to Python 2.6 or some other configuration that isn't standard. But that's just me on this project. – Craig S Mar 6 at 17:46
vote up 2 vote down

I recommend using Python Virtual environments, especially if you use a Timecapsule because Timecapsule will back everything up, except modules you added to Python!

link|flag
I like developing in a virtual environment. Makes it easy to add packages that may interfere with others. Cleans up the base system. – Matthew Schinckel Mar 2 at 6:54
I agree esp. as the shipped python also ships with some addon libraries already which might clash with newer versions you need (I had this with zope.interface). virtualenv and your own python install prevent this. – MrTopf Mar 2 at 10:44
vote up 3 vote down

Here's some helpful info to get you started. http://www.python.org/download/mac/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.