• 1 Post
  • 4 Comments
Joined 6 months ago
cake
Cake day: August 25th, 2025

help-circle


  • If you installed with pip, simply re-run the same command that was used to install the program

    Simply running pip install yt-dlp doesn’t update though, right? You need to add an upgrade flag, so either:

    • pip install yt-dlp --upgrade
    • pip install yt-dlp -U

    EDIT: Maybe I should actually read this documentation that I am commenting about. Their steps to initially install it with PIP mention to use the -U flag anyway. That flag is meant for updating, but it won’t make the package install wrong if used during initial installation of the package or anything, so no reason not to.