My Python Environment
The most common way people go about setting up a Python environment is to do something like this: $ sudo apt install python3 python3-pip # installs pip3 $ sudo pip3 install --upgrade pip # upgrade pip to latest version Congrats, now you’re stuck with whatever version ships with the distro. I think we can do better! pyenv My recommendation now, is to use pyenv with which you can manage multiple versions, virtualenvs through a nice CLI ...