Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to disable init_printing in sympy + IPython

ok, I know how to use init_printing to get sympy to automatically render IPython output using MathJax.

from sympy import init_printing
init_printing() 

How do I get it to stop? (Yeah, I could reset my notebook but I'd like to turn it on just for a few cells and turn it off again.)

like image 553
Jason S Avatar asked Feb 27 '16 18:02

Jason S


1 Answers

found it (had to UTSL):

 sympy.init_printing(pretty_print=False)
like image 107
Jason S Avatar answered Nov 20 '22 00:11

Jason S