Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

This works for me at the command line, but you are right that in the notebook it doesn't, and there definitely isn't graphics_filename() in sage.misc.misc. This must be a recent regression, I think, as it works in Sage 5.3. The bug is at line 457 of the animate file, where it calls the gif method in the notebook, which is clearly wrong now. (Line 557 also calls this nonexistent function.)

For now, I'd suggest doing

sage: a.save(filename='circle.gif')

which works for me on sagenb.org.

This works for me at the command line, but you are right that in the notebook it doesn't, and there definitely isn't graphics_filename() in sage.misc.misc. This must be a recent regression, I think, as it works in Sage 5.3. The bug is at line 457 of the animate file, where it calls the gif method in the notebook, which is clearly wrong now. (Line 557 also calls this nonexistent function.)

For now, I'd suggest doing

sage: a.save(filename='circle.gif')

which works for me on sagenb.org.

Edit: the fix will be easy enough, see Trac ticket 13807.