https://github.com/dpbm/downdroid
Download Android-X86 on your terminal
https://github.com/dpbm/downdroid
android android-x86 bash cli cli-tool download download-manager linux python python-package python3 shell terminal
Last synced: 6 months ago
JSON representation
Download Android-X86 on your terminal
- Host: GitHub
- URL: https://github.com/dpbm/downdroid
- Owner: Dpbm
- License: mit
- Created: 2022-10-09T16:07:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-25T17:18:33.000Z (almost 2 years ago)
- Last Synced: 2025-04-29T08:06:58.296Z (9 months ago)
- Topics: android, android-x86, bash, cli, cli-tool, download, download-manager, linux, python, python-package, python3, shell, terminal
- Language: Python
- Homepage: https://dpbm.github.io/downdroid/
- Size: 17.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Download [Android X86](https://www.android-x86.org/) on your terminal
This python script list and download your required version of android-x86. To run this you need to have:
* python3
* pip (or similar)
## install
```bash
pip install downdroid
```
remember to add `~/.local/bin` to `PATH`
## Commands
| command | arguments |
| --------- | ----------------------- |
| --list | all, versions, releases |
| --help | - |
| --add | {android-x86 version} |
## Download a version
List Versions and releases
```bash
downdroid --list versions
downdroid --list releases
or
downdroid --list all
```
select a version and then:
```bash
downdroid --add {selected-version}
```
now, wait, in some minutes your file will be downloaded to you `Downloads` folder and you can use your android-x86
## DEV
if you want to run this by your own, clone this repo and run:
pipenv
```
pipenv install
pipenv shell
```
or with pip
```
pip install -r requirements.txt
```
and finally run those commands with python3 as:
```bash
python3 downdroid.py --list versions
python3 downdroid.py --list releases
python3 downdroid.py --list all
python3 downdroid.py --add {selected-version}
```
or with executable commands listed on [Download a version](#download-a-version)