This is just a brief collection of some Tkinter GUI examples.
- cd to the downloaded and extracted repo folder.
- 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
- with conda:
To run one of the scripts, simply execute:
python analog_clock.py
python digital_clock.py
python coin_flip.py
python calculator.py