install ipython and readline on mac

来源:互联网 发布:windows系统恢复选项 编辑:程序博客网 时间:2024/05/21 17:59
ipython is a powerful interactive shell for python. With it, we can tak advantage of python programming language in our daily works.
One of ipython's power is its tab-completion feature that needs readline to work. On mac system, it lacks this library due to license issue. There is a proprietary version of readline in mac, but it doesn't work with ipython.
To install them on mac system, we can simply use easy_install utility, like this:
sudo easy_install ipython readline
原创粉丝点击