pip in recent Linux now refuses to work
If you wish to install a non-Debian-packaged Python package, create a virtual environment using python3 -m venv path/to/venv.
Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make sure you have python3-full installed.
what is a good way to avoid typing this annoyingly long qualified paths?
I though about ./bin/pip but that will break as soon as I am in some directory within
Having different path to python in every project is also really annoying.
At that point I am considering making one shared virtual environment for all my projects and making aliases, and working as I worked before.