[Installation] Add alpine instructions (#20)

lauren n. liberda 2023-04-03 04:20:46 +02:00 committed by GitHub
parent 319c0b9746
commit 42cee84c6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

@ -124,6 +124,30 @@ sudo port selfupdate
sudo port upgrade yt-dlp sudo port upgrade yt-dlp
``` ```
### [Alpine Linux](https://alpinelinux.org/)
Make sure you're on the latest version (or edge) - older versions don't receive updates for community repo.
To install yt-dlp on Alpine Linux:
```sh
doas apk -U add yt-dlp
```
Or alternatively, without any optional dependencies:
```sh
doas apk -U add yt-dlp-core
```
yt-dlp should upgrade with your system. If you want to do that explicitly:
```sh
doas apk -U upgrade yt-dlp
```
To uninstall:
```sh
doas apk del yt-dlp
```
On [postmarketOS](https://postmarketos.org/) you might have to use `sudo` instead of `doas`.
## Windows ## Windows