Wanting to try out some command line tools written in Python, I needed to install Python on my Ubuntu machine. Since it’s more than a decade without Python, I needed to lookup how that was done these days. This is what I ended up with:
sudo apt install python3 python3-is-python python3-pip pipx
And apparently, these days you can’t just install packages with pip unless you are in a virtual environment. So now you have pipx
, which I used to install ruff
.
pip instal ruff