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.
There will be a maintenance on the server on November 14th 2025.
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: 266 times
Last updated: Nov 26 '20
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
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_boxwas 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!