From 0a08ae6d77ba0bd2beecdcc9882669482ee0e499 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Fri, 9 Sep 2022 23:46:23 +0530 Subject: [PATCH] Add install instructions for Termux --- Installation.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Installation.md b/Installation.md index e2a1250..3c38462 100644 --- a/Installation.md +++ b/Installation.md @@ -159,3 +159,19 @@ To update, run: ```powershell winget upgrade yt-dlp ``` + +## Android + +You can use yt-dlp on Android using [Termux](https://termux.dev). Once Termux is installed, open it and run the following commands: +```bash +termux-setup-storage # Allow termux to download files into your phone's storage +pkg update && pkg upgrade # Update all packages +pkg install python # Install python +pip install -U yt-dlp # Install yt-dlp +pkg install ffmpeg # OPTIONAL: Install ffmpeg +``` + +To update, run: +```bash +pip install -U yt-dlp +```