hashmuke
hashmuke

Reputation: 3325

How to display symbolic equation using jupyter notebook?

I used to use ipython notebook for displaying equations while using simpy module. As can be seen from the figure below it is neat and elegant.

ipython notebook equation display

It seems I have made some updates and I no more have ipython notebook; every time I run it, it switches back to Jupyter (I guess that is a new name after 4). Unfortunately, printing equation doesn't work as it used to yet I can type latex as Markdown text(see figure below). Am I missing something?

jupyter notebook equation display

Upvotes: 3

Views: 4261

Answers (1)

hashmuke
hashmuke

Reputation: 3325

So finally it is working thanks to this reddit post. I just needed to update sympy module.

pip install -U sympy

Upvotes: 1

Related Questions