androidRunning CDL on Android

Cyberdrop-dl is a terminal app. That means you need a terminal emulator to run it. The defacto choice in Android is termuxarrow-up-right.

circle-info

Most of the dependencies need to be compiled from source. A rust compiler is required. This means the installation could take several minutes, especially on low end phones

circle-exclamation

1. Install termux

Termux wiki: https://wiki.termux.com/wiki/Installationarrow-up-right

Install termux from F-droid (recommended)arrow-up-right or from the Google Playstore (restricted version)arrow-up-right:

2. Install cyberdrop-dl-patched

Run the following commands inside termux

# Get storage access permission
termux-setup-storage

# Install dependencies
pkg upgrade -y
pkg install rust which micro libjpeg-turbo python uv -y

# Install CDL and setup appdata folder
uv tool install cyberdrop-dl-patched
uv tool update-shell
mkdir /sdcard/cyberdrop-dl
echo 'alias cyberdrop-dl="cyberdrop-dl --portrait --appdata-folder /sdcard/cyberdrop-dl"' >> ~/.bashrc
source ~/.bashrc

How to update cyberdrop-dl-patched?

Run this command inside termux:

Last updated