Eloi Torrents
Eloi Torrents9mo ago

Sage support

Hello, I have sagemath installed and it works in marimo if I import the needed functions. for example, this works:
from sage.all import plot, sin
P = plot(sin, (0,10))
P
from sage.all import plot, sin
P = plot(sin, (0,10))
P
But the plot is not shown...
2 Replies
Myles Scolnick
Myles Scolnick9mo ago
We don’t have support for sage. Can you file a ticket so we can properly prioritize?
Eloi Torrents
Eloi TorrentsOP9mo ago
GitHub
Sage plots support · Issue #816 · marimo-team/marimo
Description I want to use marimo with sagemath. For example this code works, but the plot is not displayed. from sage.all import plot, sin P = plot(sin, (0,10)) P Suggested solution Show the plot A...