answered 7 years ago
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")