First time here? Check out the FAQ!
answered 2017-09-12 17:59:02 +0100
Here is something that works, although I don't view it as perfect.
from sage.all import * from IPython.display import Image var('x') p=plot(sin(x),(x,-2*pi,2*pi)) p.save('tmp.png') Image("tmp.png")