self compiled sage jmol viewer works in notebook but not in jupyter notebook?
I have a self-compiled Sage, and adjusted Java Version on the system,
so this is running fine in the SageNB notebook (obtained with notebook()
):
x, y, z = var('x y z')
plot_vector_field3d((x*cos(z), -y*cos(z), sin(z)), (x, 0, pi), (y, 0, pi), (z, 0, pi), viewer='jmol')
But Jupyter notebook does not want to show vector field 3d: ....
Any help?