Clean python setup

Great article “A hygienic Python setup for Linux, Mac, and WSL” about python's packages installation and creating clean and reproducible enviroment.

In a couple of words:

  1. pyenv to control python interpreter version
  2. pipenv / poetry to control virtual environment settings.
  3. pipx to install python cli tools.

Thanks Angela Bassa for the article's link.