Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 1.26 KB

README.md

File metadata and controls

58 lines (39 loc) · 1.26 KB

Tkinter GUI examples

This is just a brief collection of some Tkinter GUI examples.

Installation and usage

  1. cd to the downloaded and extracted repo folder.
  2. Create a virtual environment and install the requirements:
    • with conda:
      conda create -n Tkinter_tests -y python=3.9 pip
      conda activate Tkinter_tests
      pip install -r requirements.txt
      
    • with pip:
      python -m venv Tkinter_test
      source Tkinter_test/bin/activate
      pip install -r requirements.txt
      

To run one of the scripts, simply execute:

python analog_clock.py

img

python digital_clock.py

img

python coin_flip.py

img

python calculator.py

img

Sources