10

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.)

Jason S
  • 184,598
  • 164
  • 608
  • 970

1 Answers1

15

found it (had to UTSL):

 sympy.init_printing(pretty_print=False)
Jason S
  • 184,598
  • 164
  • 608
  • 970