- Windows 10/11
- Python 3.8+ (optional, for running from source)
- pip (optional, for running from source)
- Download
FolderZipperVersioning.exefrom thebuilds/folder - Double-click to run
- Install Python from python.org
- Clone or download repository
pip install -r requirements.txtpython app-files/zipper.py
pip install pyinstaller
python build.py- Python 3.8+
- python3-tk (Tkinter)
- tkinter
For Ubuntu 20.04+, Debian 10+, and derivatives:
# Install dependencies
sudo apt update
sudo apt install python3-tk
# Install the package
sudo dpkg -i builds/folder-zipper-versioning_1.0_all.deb
# Or use apt for automatic dependency resolution
sudo apt install ./builds/folder-zipper-versioning_1.0_all.debLaunch: folder-zipper-versioning from terminal or Applications menu
For Arch Linux, Manjaro, EndeavourOS:
# Install dependencies
sudo pacman -S python python-tkinter tk
# Install the package
sudo pacman -U builds/folder-zipper-versioning-1.0-1-any.pkg.tar.zstLaunch: folder-zipper-versioning from terminal or Applications menu
For Fedora 35+, RHEL 8+, CentOS Stream:
# Install dependencies
sudo dnf install python3-tkinter tkinter
# Install the package
sudo dnf install builds/folder-zipper-versioning-1.0-1.noarch.rpmLaunch: folder-zipper-versioning from terminal or Applications menu
# Install dependencies (Debian/Ubuntu)
sudo apt install python3 python3-tk python3-pip
# Install dependencies (Fedora)
sudo dnf install python3 python3-tkinter python3-pip
# Install dependencies (Arch)
sudo pacman -S python python-tkinter python-pip
# Clone and run
git clone <repository-url>
cd zip-folder-automation
python3 app-files/zipper.py# Install PyInstaller
pip3 install pyinstaller
# Build
python3 build.py --executable
# Run
./builds/FolderZipperVersioning# Install build tools
# Debian/Ubuntu
sudo apt install dpkg-dev debhelper python3-setuptools
# Arch Linux
sudo pacman -S base-devel devtools
# Fedora/RHEL
sudo dnf install rpm-build rpmdevtools
# Build all packages
python3 build.py --all
# Or build specific packages
python3 build.py --deb # Debian package only
python3 build.py --arch # Arch package only
python3 build.py --rpm # RPM package onlymacOS support is planned for future releases.
Debian/Ubuntu:
sudo apt install python3-tkFedora:
sudo dnf install python3-tkinterArch Linux:
sudo pacman -S python-tkinterchmod +x builds/FolderZipperVersioning
./builds/FolderZipperVersioningRun the following to refresh the desktop database:
update-desktop-database ~/.local/share/applications
gtk-update-icon-cache -f /usr/share/icons/hicolorCheck if Python and Tkinter are properly installed:
python3 --version
python3 -c "import tkinter; print('Tkinter OK')"