You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use the package in jupyter.
The package can be successfully loaded by using "using Maxima".
However, any maxima operation will lead to jupyter kernel dying and then restating.
For example: m"diff(sin(x))" and mcall(m"plot(sin(x),[x,-30,30])")
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. It seems that Latex display is broken. Things like trigsimp(:(sin(x)^2 + cos(x)^2))
still work as they return a Julia expression, but anything that returns a Maxima expression (MExpr) will try to use the Latex display and kill the kernel. Perhaps the method to do this has changed in IJulia...
This just seems to hang forever in JupyterLab. Also, I can confirm that Maxima code for displaying latex is still working as expected so something must have moved upsteam. I'll file an issue there.
In the near-term, it appears that display("text/latex", m::MExpr) is still working so you could switch to that while I work on this. For example, instead of
I am trying to use the package in jupyter.
The package can be successfully loaded by using "using Maxima".
However, any maxima operation will lead to jupyter kernel dying and then restating.
For example: m"diff(sin(x))" and mcall(m"plot(sin(x),[x,-30,30])")
The text was updated successfully, but these errors were encountered: