From 41b844b52851dc17ce78cc58533e6c30bffb064b Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 10 Feb 2024 13:52:10 +0100 Subject: [PATCH] updated install-linux --- install-linux.sh | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/install-linux.sh b/install-linux.sh index ed75c67..868df68 100755 --- a/install-linux.sh +++ b/install-linux.sh @@ -6,26 +6,25 @@ sudo apt update -y sudo apt install python3 -y # Install Python3 pip -sudo apt install python3-pip -y +sudo apt install python3 python3-pip -y -# Install PatchELF for Nuitka (if needed) -sudo apt install patchelf -y - -# Install Nuitka -pip3 install nuitka - -pip3 install tqdm +# For GUI +sudo apt-get install python3-tk -y +pip install customtkinter -y # For Images -#pip3 tkintertable -#pip3 Pillow --upgrade --force --no-cache-dir +pip3 tkintertable +pip3 Pillow --upgrade --force --no-cache-dir # Install additional Python packages pip3 install requests sudo apt install libgirepository1.0-dev -y sudo apt install python3-cairo-dev -y -pip3 install pillow # Install Pillow for image manipulation -pip3 install setuptools # Install setuptools for packaging +pip3 install pillow # Pillow for image manipulation +pip3 install tqdm # For progress bar in terminal -# Install ccache for faster re-compiling -sudo apt install ccache -y +# Optional for compiling to executable +pip3 install nuitka # For building in to executable +sudo apt install patchelf -y # Install PatchELF for Nuitka (if needed) +sudo apt install ccache -y # Install ccache for faster re-compiling +pip3 install setuptools # Install setuptools for packaging \ No newline at end of file