[Installation] Update pip instructions for nightly and `hatchling` (#36)

bashonly 2024-02-16 19:58:16 -06:00 committed by GitHub
parent 7f2a4eeafe
commit fcefd989ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 4 deletions

@ -48,12 +48,18 @@ You can install without any of the optional dependencies using:
```bash
python3 -m pip install --no-deps -U yt-dlp
```
<a id="pip-nightly"></a>
<a id="pip-master"/>
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
```
<a id="pip-master"></a>
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
```