Running 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 termux.
Compiling from source also requires a lot of extra storage. You will need at least 3.4GB just for the installation of CDL
1. Install termux
termux
Termux wiki: https://wiki.termux.com/wiki/Installation
Install termux from F-droid (recommended) or from the Google Playstore (restricted version):
2. Install cyberdrop-dl-patched
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
?
cyberdrop-dl-patched
?Run this command inside termux:
uv tool upgrade cyberdrop-dl-patched
Last updated