diff --git a/FAQ.md b/FAQ.md index 6057938..45c79fe 100644 --- a/FAQ.md +++ b/FAQ.md @@ -3,9 +3,9 @@ See [this pinned issue](https://github.com/yt-dlp/yt-dlp/issues/3766) for a list of some important currently known issues and the [bugtracker](https://github.com/yt-dlp/yt-dlp/issues) for a full list of issues. -### The yt-dlp in my Package Manager is outdated +### The yt-dlp in my Package Manager is outdated/broken -Unfortunately, there is nothing we can do if your distribution serves an outdated version. You should report this to the package maintainer or your distribution in their bugtracker or support forum. +Unfortunately, there is nothing we can do if your distribution serves an outdated/broken version. You should report this to the package maintainer or your distribution in their bugtracker or support forum. As a last resort, you can also uninstall the version installed by your package manager and follow [our installation instructions](Installation) to install the latest version. diff --git a/Installation.md b/Installation.md index 3c38462..ea1f96e 100644 --- a/Installation.md +++ b/Installation.md @@ -15,17 +15,17 @@ In UNIX-like OSes (MacOS, Linux, BSD), you can also install the same in one of t ```bash sudo curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp -sudo chmod a+rx /usr/local/bin/yt-dlp +sudo chmod a+rx /usr/local/bin/yt-dlp # Make executable ``` ```bash sudo wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp -sudo chmod a+rx /usr/local/bin/yt-dlp +sudo chmod a+rx /usr/local/bin/yt-dlp # Make executable ``` ```bash sudo aria2c https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp --dir /usr/local/bin -o yt-dlp -sudo chmod a+rx /usr/local/bin/yt-dlp +sudo chmod a+rx /usr/local/bin/yt-dlp # Make executable ``` To update, run: @@ -92,17 +92,17 @@ pacman -Syu yt-dlp ### [APT](https://en.wikipedia.org/wiki/APT_(software)) You can download and install yt-dlp for Ubuntu and other related Debian-based distributions by adding the [stable PPA](https://launchpad.net/~yt-dlp/+archive/ubuntu/stable) -``` -sudo add-apt-repository ppa:yt-dlp/stable -sudo apt update -sudo apt install yt-dlp +```bash +sudo add-apt-repository ppa:yt-dlp/stable # Add ppa repo to apt +sudo apt update # Update package list +sudo apt install yt-dlp # Install yt-dlp ``` If you wish to use pre-compiled bleeding edge daily snapshot packages, use the [unstable PPA](https://code.launchpad.net/~yt-dlp/+archive/ubuntu/unstable) instead: -``` -sudo add-apt-repository ppa:yt-dlp/unstable -sudo apt update -sudo apt install yt-dlp +```bash +sudo add-apt-repository ppa:yt-dlp/unstable # Add ppa repo to apt +sudo apt update # Update package list +sudo apt install yt-dlp # Install yt-dlp ``` Your system's package manager will now automatically download the correct dependencies and keep the package updated with the rest of your system whenever you run: