From 2e229fbdf66a0bbb8982cf699679d5acbe5c3489 Mon Sep 17 00:00:00 2001 From: ghubstan <36207203+ghubstan@users.noreply.github.com> Date: Thu, 24 Mar 2022 07:50:52 -0300 Subject: [PATCH] Add comments/cmds to install tkinter ui frwk --- python-examples/run-setup.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/python-examples/run-setup.sh b/python-examples/run-setup.sh index db7e428..c7282d7 100755 --- a/python-examples/run-setup.sh +++ b/python-examples/run-setup.sh @@ -3,9 +3,18 @@ # This script must be run from this directory. # Install python3-venv if necessary. -# For systems using the apt package manager, uncomment the line below, or install the equivalent package for your system. +# For systems using the apt package manager, uncomment the line +# below, or install the equivalent package for your system. # sudo apt install python3-venv +# Install python3 tkinter if necessary. + +# If using the apt package manager, uncomment line below to install tkinter. +# sudo apt-get install python3-tk + +# If using Mac OS / brew, uncomment line below to install tkinter. +# brew install python-tk + # Install pip, then Python setuptools if necessary. # pip install setuptools