• thingsiplay@beehaw.org
    link
    fedilink
    arrow-up
    10
    ·
    edit-2
    2 months ago

    I’m a bit critical about teaching how a certain application is installed on Linux. Especially because this is aiming towards beginners who may not be familiar with how software is installed and managed on Linux. And in such a case, just providing the command for one certain type of package manager could be harmful, because all other common systems are left out.

    If Python3 is not installed on your distribution, then I would not blindly recommend people to install it (if its available). Because changing the systems Python can cause serious issues. There is a reason why its not installed, if its not. I would recommend to install yt-dlp from your distributions package manager, if its maintained and always up to date. In example it is in the Arch repositories and can be installed with pacman -S yt-dlp and is always up to date. In that case you don’t need to install or change Python or Pip and do not need to configure your PATH anymore. It’s painless. And it gets automatically updated with your system.

    yt-dlp offers lot of functionality other than simply downloding, but its complicated in my opinion. Shamelessly I want to recommend into looking my own Bash script on Linux, to make the commandline usage of yt-dlp easier: https://github.com/thingsiplay/yt-dlp-lemon

    • corbin@infosec.pubOP
      link
      fedilink
      arrow-up
      3
      ·
      2 months ago

      The “always up to date” seems to be the issue with yt-dlp in most distros (except maybe Arch-based stuff?). Installing through PIP also gives you the option of using the official nightly repo if the need arises.