• 12 Posts
  • 23 Comments
Joined 9 months ago
cake
Cake day: August 25th, 2025

help-circle

  • The guide is one of the best I’ve seen for this type of project.

    I would have to award that to GrapheneOS. Being a web-based installer, GrapheneOS is able to add buttons that directly perform the major actions right in the guide itself. At each step, instead of having a link or something and saying “go here and do this”, it simply provides you with a button that actually performs that step’s action right then and there. It is incredibly straightforward. The first few steps do involve some prerequisite manual effort to get your phone ready and web browser configured. But once those two pieces are able to communicate with each other, the rest of the process just involves pressing the buttons in the order it tells you.

    https://grapheneos.org/install/web













  • 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.