Python virtual environment
Introduction A virtual environment (or venv) is an isolated python environment in which you can use a specific Python version and install packages. At this point you may ask: Why should I create a virtualenv since I can already install everything I need? Imagine running several projects and maybe each of them requires a different …