OK guys this is tricky, and I haven't even found a suitable solution on the IPython website.
I'm working on OSX Snow Leopard. I've installed IPython using easy-install, plus all the additional basic add-ons:
$ sudo easy-install readline pexpect nose ipython
Everything worked OK and installed correctly.
The problem is that IPython uses the python 2.6.1 interpreter, but I would like to use the python 2.6.6 or python 2.7. It is necessary since I'm using the "pygame" module, which only works with my python 2.6.6 installation.
How can I do that? Thanks in advance.
Another solution:
(besides the already accepeted answer, thanks for that btw.)
I just used pip
to pip uninstall ipython
and then sudo pip install ipython
. This installed it against my latest python version. Thanks for the other version though! I've come to use pip
for all my python installation necessities instead of easy_install
as of late.