Some interesting things have happened recently that have caused me to spend way too much time writing Python code:
- Google App Engine was release with native support for pure Python web applications. It's now really easy to write and deploy Python applications that are extremely scalable on top of a solid (and portable) infrastructure.
- Apple released Mac OS X 10.5 Leopard, and included support for Python as a first-class citizen in its Xcode development tool (which lets you develop with Xcode/Interface Builder pretty seamlessly), in its ScriptingBridge (which allows you to access AppleScript enabled applications using the goodness of Python, and not the confusingness of AppleScript), and allowing for very easy interaction with Cocoa objects (Apple's GUI programming framework).
The net result of all this is that I've been spending a lot of time in Python. Surprised the hell out of me, but it's the truth.
I have found the IPython command-shell particularly useful. It's very well done, and has excellent documentation. Problem is, it doesn't work so well on Mac OS X 10.5 Leopard. Your screen gets scrogged because of a Readline conflict (see the video). Here's my cookbook for getting it to work - it's way easier than all the other documents on the Internet lead you to believe.
- Installing IPython on Mac OS X is actually quite easy with the following command:
sudo easy_install ipython - Execute the command to load the right Readline library:
sudo easy_install -f http://ipython.scipy.org/dist/ readline
That's it. Let me know if that didn't work for you.
Now, if you could only get Apple to include Python support in the iPhone SDK...
Worked for me, thanks!
ReplyDeleteWorked for me too... Thanks for posting this
ReplyDeleteWhere do I type "sudo etc"
ReplyDeletein to IDLE ?
If so it just tells me invalid syntax.
Thanks
Thank you for the commands!!
ReplyDeleteGreetings from Mexico!
Worked like a charm, you da man! Thanks!
ReplyDeleteWell, it almost works for me. Problem is that the "u" key doesn't function; when I press it within ipython, nothing happens. The capital "U" key does work. If I start ipython with "ipython -noreadline" the "u" key works again but, of course, I lose tab completion. Sigh.
ReplyDeleteAny ideas what the problem is here?
Thanks in advance,
Gary
Cool. ipython rules. However, the readline part failed for me because apparently I don't have gcc or make?
ReplyDelete^ install xcode/dev tools
ReplyDeleteworked. excellent. thank you.
ReplyDeleteDidn't work for me.
ReplyDeleteIn the beginning of the build, all goes well:
Best match: readline 2.5.1
Downloading http://ipython.scipy.org/dist/readline-2.5.1.tar.gz
Processing readline-2.5.1.tar.gz
Running readline-2.5.1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-ecniWD/readline-2.5.1/egg-dist-tmp-hEgh0g
============ Building the readline library ============
readline-5.2/
(...)
Beginning configuration for readline-5.2 for i386-apple-darwin9.5.0
(...)
But in the "Building the readline extension module" phase it gives many warnings and errors. The complete output here:
http://alexsm.googlepages.com/readline-build.txt
for non system wide install:
ReplyDeletemkdir -p ~/.python/lib/python2.5/site-packages
echo "PYTHONPATH=$HOME/.python/lib/python2.5/site-packages" >> ~/.bash_profile
echo "export PYTHONPATH" >> ~/.bash_profile
log out and login from the shell
than run
easy_install --prefix $HOME/.python http://ipython.scipy.org/dist/ipython-0.9.1-py2.5.egg
easy_install --prefix $HOME/.python -f http://ipython.scipy.org/dist/ readline
Got the same errors as Alex and Tony when installing the readline module.
ReplyDeleteZogzog all,
ReplyDeleteI was having the same problem with:
WARNING: Readline services not available on this platform.
WARNING: The auto-indent feature requires the readline library
I made sure that readline was installed with:
sudo easy_install -f http://ipython.scipy.org/dist/ readline
and it didn't work.
Then I checked in /Library/Python/site-package/
and I saw a pyreadline*.egg that I removed (cf. http://lists.ipython.scipy.org/pipermail/ipython-user/2008-May/005402.html)
Then ipython was happy again.
I hope that helps.
Seb
[...] IPython, found here. Note the following important safety tip, found at IPython on Mac OS X 10.5 Leopard at Brian Berliner’s Brain : I have found the IPython command-shell particularly useful. It’s very well done, and has [...]
ReplyDeleteHow do I get easy_install to work? I've tried downloading setuptools but cannot get the script to run. All the information I have found on it is pretty vague, and I'm not very familiar with Python. I am trying to get iPython, but first I need to succesfully run easy_install. Any ideas?
ReplyDelete[...] (via Brian Berliner) [...]
ReplyDeleteI had the same problem as Alex, lots of gcc errors and exits with "command 'gcc' failed with exit status 1".
ReplyDeleteUsing Leopard, on a brand new mpb with dev tools / xcode installed.
what am I doing wrong?
Running the command didn't solve the problem but I found that I had some other readline files, including one in lib-dynload. So I deleted all those and ran the command again.
ReplyDeleteIt worked, thanks!
It didn't work for me, the readline module doesn't compile - I believe I have all of the dependencies. I'm running Mac OS X 10.5.6, Python 2.6 installed via darwin ports.
ReplyDeleteHere's the error message from easy_install:
http://pastebin.com/fe2d63b5
I got the exact same warnings and errors that Alex got.
ReplyDeleteI'm running Leopard 10.5.6.
Any thoughts, Brian?
I get exactly the same error as Alex (GCC failure), however I have macports installed and:
ReplyDeletesudo port install readline-5
makes everything work fine for me.
Didn't work for me either, exactly the same problem as Alex.
ReplyDeleteThe solution here seems to work for me though:
http://hurley.wordpress.com/
Basically just copy the egg directory by hand to /Library/Python/2.5/site-packages
and edit /Library/Python/2.5/site-packages/easy-install.pth
Question:
ReplyDeleteI have a MacBook with 10.5.6 and I followed all the steps but I cannot get any tab-completion or emacs-like key strokes to work with ipython. The commands and shortcuts work fine with the terminal, but stop working after ipython is loaded. Help?
M
Many thanks to SebZeFrog, I removed pyreadline and it worked like magic !!
ReplyDeleteThanks I was looking for that help! It did the job :)
ReplyDeleteyeo man...big ups...thanx for the install command...so easy...
ReplyDeleteThanks Gilles!!
ReplyDeleteI had readline install problem.
It worked for me in Snow Leopard.
Found this page on a Google search because I had the readline problem-- deleting the egg as mentioned above helped. Thank you!
ReplyDelete