GNU Abyss
kiwifarms.net
- Joined
- May 30, 2023
I liked runningReally, is:
Really so hard?Code:python3 -m venv yt-dlp # Module venv not found. # Fuck sudo apt install python3-venv python3 -m venv yt-dlp cd yt-dlp . ./bin/activate pip install yt-dlp
obviously you can also replacepip install yt-dlp
withgit clone https://github.com/yt-dlp/yt-dlp.git ; cd yt-dlp ; pip install .
and there are a few other modules you might want.
pip install --user yt-dlp
, but apparently that's now outdated or insecure or some other shit and the system complains with an error. If I wanted to invoke yt-dlp or other Python programs the old fashioned way, I now need to add venvs to $PATH or set up shell scripts as aliases for them.I hate every single one of these people.PEP 668 – Marking Python base environments as “externally managed”
Author: Geoffrey Thomas <geofft at ldpreload.com>, Matthias Klose <doko at ubuntu.com>, Filipe Laíns <lains at python.org>, Donald Stufft <donald at stufft.io>, Tzu-ping Chung <uranusjr at gmail.com>, Stefano Rivera <stefanor at debian.org>, Elana Hashman <ehashman at debian.org>, Pradyun Gedam <pradyunsg at gmail.com>
PEP-Delegate: Paul Moore <p.f.moore at gmail.com>