Top "Tkinter" questions

Tkinter is the standard Python interface to the "Tk" graphical user interface toolkit.

_tkinter.TclError: no display name and no $DISPLAY environment variable

I am running a simple python script in the server: import matplotlib.pyplot as plt import numpy as np x = …

python matplotlib tkinter
matplotlib error - no module named tkinter

I tried to use the matplotlib package via Pycharm IDE on windows 10. when I run this code: from matplotlib import …

python matplotlib tkinter
Background color for Tk in Python

I'm writing a slideshow program with Tkinter, but I don't know how to change the background color to black instead …

python tkinter tk
Dynamically updating plot in matplotlib

I am making an application in Python which collects data from a serial port and plots a graph of the …

python matplotlib tkinter
How to get the input from the Tkinter Text Widget?

How to get Tkinter input from the Text widget? EDIT I asked this question to help others with the same …

python tkinter
Using Tkinter in python to edit the title bar

I am trying to add a custom title to a window but I am having troubles with it. I know …

python tkinter titlebar
Understanding lambda in python and using it to pass multiple arguments

After reading everything I can find on lambda, I still don't understand how to make it do what I want. …

python python-3.x tkinter
Changing the text on a label

I am having trouble with using a key binding to change the value of a label or any parameter. This …

python python-3.x tkinter
Tkinter module not found on Ubuntu

Python 2.7.1+ (r271:86832, Apr 11 2011, 18:05:24) [GCC 4.5.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import Tkinter &…

python-3.x tkinter
How can I prevent a window from being resized with tkinter?

I have a program which creates a window where a message is displayed according to a check box. How can …

python python-2.7 tkinter