name 'input_box' is not defined
Why when trying to use input_box it gives the error: name 'input_box' is not defined? I saw some examples using input_box but I'm not able to use it.
Why when trying to use input_box it gives the error: name 'input_box' is not defined? I saw some examples using input_box but I'm not able to use it.
I solved the problem with: from sage.repl.ipython_kernel.all_jupyter import *
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2020-11-26 15:47:47 +0100
Seen: 191 times
Last updated: Nov 26 '20
Welcome to Ask Sage!
Thank you for your question!
If possible, provide a link to the examples you saw of using
input_box
.If possible, say what version of Sage you are using, and on what operating system.
To figure out which version of Sage you are using, issue the command
version()
in Sage.It seems
input_box
was part of the old SageNB notebook.See this archived SageMath documentation page on widgets for sageNB.
https://doc.sagemath.org/html/en/prep... and https://wiki.sagemath.org/interact/gr... maybe
Thank you very much for your responses!