Start by creating your default iPython profile. From your shell, type:
$ ipython profile create
This should result in a result similar to this, assuming someuser :
[ProfileCreate] Generating default config file: u'/home/someuser/.ipython/profile_default/ipython_config.py'
Open the newly created file with your favorite text editor, in the example above, shown as: /home/someuser/.ipython/profile_default/ipython_config.py
Add the bottom lines below:
c.TerminalInteractiveShell.colors = 'NoColor' c.TerminalInteractiveShell.display_completions = 'readlinelike'
Save the file.
It should be like that. Changes should be active in new iPython sessions.
source share