vote up 0 vote down star
2

Does iPython work on Mac OS X 10.6.1 Snow Leopard? I'm python noob, how can I install iPython on my Mac? Links? suggestions?

Thanks

flag

2 Answers

vote up 4 vote down check

To install with the Apple-supplied Python in 10.6:

$ sudo /usr/bin/easy_install-2.6 ipython

To use:

$ ipython
link|flag
No need for the full path, just sudo easy_install ipython – dbr Sep 17 at 9:01
the mac comes with easy_install built in?!? – K. Brafford Sep 17 at 15:47
1  
In this case, the full path is the easy_way to ensure that the package is installed with a specific Python instance, the Apple-supplied Python, avoiding the ambiguities of the OP's $PATH setting and what other Pythons and setuptools packages have been installed. – Ned Deily Sep 17 at 15:48
Yes, Apple supplies an easy_install with its Python (in both 10.5 and 10.6). A fair number of other optional packages, too. – Ned Deily Sep 17 at 15:49
vote up 0 vote down

Though ipython installs and is runnable using easy_install, I found that there were some rendering problems which could only be solved by installing pyreadline as well. However, i found that there were some problems with pyreadline's installation using easy_install. The solution i've gone with involves manually extracting the python package and editing the version of gnu-readline which pyreadline tries to compile. I've posted a more in depth guide on my blog

Cheers

-- Sina

link|flag

Your Answer

Get an OpenID
or

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