From 6cf7ded26e17e1aad625c3378e9ddf374eb23b6f Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sat, 3 Dec 2022 00:54:01 -0600 Subject: [PATCH] Adds python3-tk/tkinter dependencies to Ubuntu & Fedora based installs --- xkeysnail_service.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xkeysnail_service.sh b/xkeysnail_service.sh index 0d6f9a9..6acf902 100755 --- a/xkeysnail_service.sh +++ b/xkeysnail_service.sh @@ -385,9 +385,9 @@ if ! [ -x "$(command -v pip3)" ]; then fi if ! [ -x "$(command -v python3-config)" ]; then if [ "$distro" == "ubuntu" ] || [ "${distro::6}" == "debian" ] || [ "$distro" == 'linuxmint' ]; then - pydev="python3-dev" + pydev="python3-dev python3-tk" elif [ "$distro" == "fedora" ] || [ "$distro" == "fedoralinux" ]; then - pydev="python3-devel" + pydev="python3-devel python3-tkinter" fi if [ "$distro" == "gnome" ] || [ "$distro" == "fedora" ] || [ "$distro" == "fedoralinux" ] || [ "${distro::6}" == "debian" ] || [ "$distro" == 'linuxmint' ] ; then echo "Will need to install $pydev..."