Ask Your Question
2

tutorial() not working sagemath 9.6 MacOS

asked 2022-09-03 06:52:08 +0200

mal11 gravatar image

updated 2023-01-10 00:01:06 +0200

tmonteil gravatar image

Both in terminal and Jupyter notebook, tutorial() gives an error about module not callable.

The message one gets after running help() mentions manual() and tutorial().

But while manual() does work, tutorial() does not:

sage: tutorial()
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-2-c50b110aacc5> in <module>
----> 1 tutorial()

TypeError: 'module' object is not callable
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-09-04 04:20:25 +0200

This is a bug, fixed in https://trac.sagemath.org/ticket/33933. The command will be restored in the next release of SageMath. In the meantime, here is a workaround:

sage: from sage.misc.sagedoc import tutorial
sage: tutorial()
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2022-09-03 06:52:08 +0200

Seen: 146 times

Last updated: Sep 04 '22