[Installation] Quote args containing brackets (#39)

bashonly 2024-05-16 10:11:51 -05:00 committed by GitHub
parent e68fe1dcf8
commit 05dc1136a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

@ -41,7 +41,7 @@ To use shell completion (autocomplete), look for the completion files in the [so
You can install the [PyPI package](https://pypi.org/project/yt-dlp) with:
```bash
python3 -m pip install -U yt-dlp[default]
python3 -m pip install -U "yt-dlp[default]"
```
You can install without any of the optional dependencies using:
@ -52,7 +52,7 @@ python3 -m pip install --no-deps -U yt-dlp
You can also install the nightly version of yt-dlp with:
```bash
python3 -m pip install -U --pre yt-dlp[default]
python3 -m pip install -U --pre "yt-dlp[default]"
```
<a id="pip-master"></a>
@ -67,7 +67,7 @@ On some systems, you may need to use `py` or `python` instead of `python3`
To update, run:
```bash
python3 -m pip install -U yt-dlp[default]
python3 -m pip install -U "yt-dlp[default]"
```
@ -198,11 +198,11 @@ You can use yt-dlp on Android using [Termux](https://termux.dev). Once Termux is
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
pip install -U yt-dlp[default] # Install yt-dlp with default dependencies
pip install -U "yt-dlp[default]" # Install yt-dlp with default dependencies
pkg install ffmpeg # OPTIONAL: Install ffmpeg
```
To update, run:
```bash
pip install -U yt-dlp[default]
pip install -U "yt-dlp[default]"
```