From fcefd989ae82ecd3bc96099b6d61d7dc55b8f56d Mon Sep 17 00:00:00 2001 From: bashonly <88596187+bashonly@users.noreply.github.com> Date: Fri, 16 Feb 2024 19:58:16 -0600 Subject: [PATCH] [Installation] Update pip instructions for nightly and `hatchling` (#36) --- Installation.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Installation.md b/Installation.md index 8d8a530..e25c552 100644 --- a/Installation.md +++ b/Installation.md @@ -48,12 +48,18 @@ You can install without any of the optional dependencies using: ```bash python3 -m pip install --no-deps -U yt-dlp ``` + - - -If you want to be on the cutting edge, you can also install the master branch with: +You can also install the nightly version of yt-dlp with: ```bash -python3 -m pip install -U pip setuptools wheel +python3 -m pip install -U --pre yt-dlp +``` + + + +If you want to be on the bleeding edge, you can also install the master branch with: +```bash +python3 -m pip install -U pip hatchling wheel python3 -m pip install --force-reinstall https://github.com/yt-dlp/yt-dlp/archive/master.tar.gz ```