· 1 min read

How to Fix Line Wrap Bug in iPython Terminal on OS X Mavericks

There is annoying line wrap issue present after installing iPython on OS X Mavericks for the first time. The issue has to do with readline being missing. To fix the problem uninstall iPython, install readline and then install iPython.

pip uninstall ipython
pip install readline
pip install ipython

Should be good to go!

Comments

Leave a comment