A command-line version of Alt App Installer
- Download the executable from releases
- Run:
./altappinstaller.exe "app url"python main.py <URL> [OPTIONS]# Simple download and install
python main.py https://example.com/app
# Download only
python main.py https://example.com/app -d
# Custom output directory
python main.py https://example.com/app -o ./my-downloads| Short | Long | Description | Choices | Default |
|---|---|---|---|---|
-v |
--version |
Show version information | - | - |
-h |
--help |
Show help information | - | - |
-d |
--download_only |
Download only, don't install | - | False |
-deps |
--dependencies |
Dependency handling mode | all, required, ignore_ver, none |
required |
-p |
--progress |
Progress bar type | full, simple, none |
full |
-o |
--output |
Output directory | Any valid path | ./downloads |
-a |
--arch |
Target architecture | x64, arm, arm64, x86, auto |
auto |
all: Install all available dependenciesrequired: Install only latest version of dependencies according to your current architecture (default)ignore_ver: Install all version of dependencies for your current architecturenone: Skip dependencies entirely
full: Complete progress bar with details (default)simple: Lightweight for legacy terminalsnone: Text-only output
# Download all dependencies with simple progress bar
python main.py https://example.com/app --dependencies all --progress simple
# Specific architecture, no dependencies
python main.py https://example.com/app --arch x64 --dependencies none
# Custom output with download only
python main.py https://example.com/app -d -o ./custom-folder --progress full- Git
- Python 3.8+
- pip
-
Clone the repository
git clone https://github.com/mjishnu/alt-app-installer-cli cd alt-app-installer-cli -
Install dependencies
pip install -r requirements.txt
-
Run the application
cd app python main.py "your-app-url"
| Issue | Solution |
|---|---|
| No progress bar visible | Try --progress simple or --progress none |
| Wrong architecture | Use --arch x64/x86/arm/arm64 |
| Download fails | Check internet connection and URL validity |
./altappinstaller.exe -v- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- 🐛 Report Issues
- 🌐 Discord
- 📖 Check the documentation above for common solutions
Give a ⭐️ if this project helped you!