https://github.com/daechler/linuxbinaryinstaller
Install any files (e.g., scripts, binaries, AppImages) and add shortcuts to the desktop and start menu.
https://github.com/daechler/linuxbinaryinstaller
linux
Last synced: about 1 month ago
JSON representation
Install any files (e.g., scripts, binaries, AppImages) and add shortcuts to the desktop and start menu.
- Host: GitHub
- URL: https://github.com/daechler/linuxbinaryinstaller
- Owner: Daechler
- Created: 2025-09-10T16:40:09.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-10T17:06:42.000Z (9 months ago)
- Last Synced: 2026-04-15T00:09:25.751Z (2 months ago)
- Topics: linux
- Language: Python
- Homepage: https://daechler.net
- Size: 10.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linux Binary Installer
Install any files (e.g., scripts, binaries, AppImages) and add shortcuts to the desktop and start menu.
## Installation Instructions
The following command assumes **Python** and **pip** are already installed. It will create the directory `$HOME/Software/LinuxBinaryInstaller`, download the required files, install dependencies, and launch the installer.
```bash
mkdir -p $HOME/Software/LinuxBinaryInstaller && cd $HOME/Software/LinuxBinaryInstaller && curl -O https://raw.githubusercontent.com/Daechler/LinuxBinaryInstaller/refs/heads/main/requirements.txt -O https://raw.githubusercontent.com/Daechler/LinuxBinaryInstaller/refs/heads/main/installer_gui.py && pip install -r requirements.txt && python installer_gui.py
```