jupyter console --colors=NoColor
makes In [x]:
and Out [x]:
colorless but any error messages are still colored.
Asked
Active
Viewed 344 times
2

Dominykas Mostauskis
- 7,797
- 3
- 48
- 67

avamsi
- 389
- 3
- 16
-
You probably need to set `c.InteractiveShell.colors` in the [IPython kernel config](http://ipython.readthedocs.org/en/stable/config/options/kernel.html) file. The colours in error messages are generated by the kernel, not the console frontend. – Thomas K Mar 07 '16 at 11:21