Is there any way to import tkinter in Sage?
i want to organise my work on pretty interface using tkinter module, but it seems that is not obviously easy to do bcs all time i get error becs of importation of tkinter!!! any one had already deal with this issu, can help i'll be thankful. is there any other tool to build interfaces? this is the msg that i got
` ImportError Traceback (most recent call last)
<ipython-input-5-2602f712d6ec> in <module>()
----> 1 import tkinter
/opt/sagemath-8.6/local/lib/python2.7/site-packages/tkinter/__init__.py in <module>()
3
4 if sys.version_info[0] < 3:
----> 5 from Tkinter import *
6 from Tkinter import (_cnfmerge, _default_root, _flatten, _join, _setit,
7 _splitdict, _stringify, _support_default_root, _test,
/opt/sagemath-8.6/local/lib/python2.7/lib-tk/Tkinter.py in <module>()
37 # Attempt to configure Tcl/Tk without requiring PATH
38 import FixTk
---> 39 import _tkinter # If this fails your Python may not be configured for Tk
40 tkinter = _tkinter # b/w compat for export
41 TclError = _tkinter.TclError
ImportError: No module named _tkinter`
Some basic questions: how did you install Sage, and what OS are you using? Also, does tkinter work with your system's Python?
I installed my sage from the siteweb, and i have windows 8.1, and yeah i already use tkinter with python 3 and it works perfectly
Does
sage -pip install pytk
solve your problem?@dsejas That won't help. The Windows version currently does not include tkinter or tcl/tk. Depending on your use case you might find it useful instead to use interactive widgets in a Jupyter notebook using interacts: http://doc.sagemath.org/html/en/prep/...
@dsejas i actually i try it now and it seems that it may be work but i got that msg check the permission ?