plot sage Graphics() from jupyter notebok in CoCalc
I want to use sage as a python library from jupyter notebok in CoCalc. I have a problem with Sage plotting:
from sage.all import *
var('x')
plot(sin(x)).show()
This code outputs "Graphics object consisting of 1 graphics primitive".
Pyplot plotting works fine. There are a number of old posts with the similar problem ( ex. https://ask.sagemath.org/question/109...), some of them recommend changing matplotlib backend with %matplotlib inline which does not help. Is there a way to output sage Graphics() inline without using pyplot?
To potential answerers: It seems like this might not be specific to CoCalc, but just in general Jupyter.
In your Jupyter worksheet, are you using the Sage kernel or the Python kernel?
You can select the "Kernel" menu and change kernel to use the SageMath kernel. This might solve your plotting issue. If not, can you make the worksheet public and link to it? This might help understand the problem.
My idea is to use Python kernel but import sage as a library (actually, only specific features, incl. plotting)