From 1fd08f807125e371847c9b604430a400def615bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Fern=C3=A1ndez=20Serrata?= <76864299+Rudxain@users.noreply.github.com> Date: Wed, 5 Mar 2025 17:08:58 -0400 Subject: [PATCH 1/2] Update Installation.md to explicitly install pip Also: - `rm libexpat openssl`, because they are required deps, so they will always be installed. No need to `mark-manual` because `yt-dlp` doesn't use those deps directly - Improve side comment --- Installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installation.md b/Installation.md index 958743c..cf0b186 100644 --- a/Installation.md +++ b/Installation.md @@ -210,7 +210,7 @@ You can use yt-dlp on Android using [Termux](https://termux.dev). Once Termux is ```bash termux-setup-storage # Allow termux to download files into your phone's storage pkg update && pkg upgrade # Update all packages -pkg install libexpat openssl python # Install python +pkg install python python-pip # Install Python, its package manager, and their dependencies pip install -U "yt-dlp[default]" # Install yt-dlp with default dependencies pkg install ffmpeg # OPTIONAL: Install ffmpeg ``` From 344efedc78632cb68af0b4f48b0a40c65f092243 Mon Sep 17 00:00:00 2001 From: bashonly <88596187+bashonly@users.noreply.github.com> Date: Fri, 7 Mar 2025 16:42:53 +0000 Subject: [PATCH 2/2] Apply suggestions from code review --- Installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installation.md b/Installation.md index cf0b186..bd32ed2 100644 --- a/Installation.md +++ b/Installation.md @@ -210,7 +210,7 @@ You can use yt-dlp on Android using [Termux](https://termux.dev). Once Termux is ```bash termux-setup-storage # Allow termux to download files into your phone's storage pkg update && pkg upgrade # Update all packages -pkg install python python-pip # Install Python, its package manager, and their dependencies +pkg install python python-pip # Install Python and pip pip install -U "yt-dlp[default]" # Install yt-dlp with default dependencies pkg install ffmpeg # OPTIONAL: Install ffmpeg ```