Python Virtual Environments

Question

Create a virtual environment for an app?

This is a convenient time to remind you that it is best practice to keep global Python package installations to an absolute minimum; instead, they should be installed in the virtual environment associated with each project. from Set Up a Python Environment

Links

A Guide to Python's Virtual Environments

Pipenv & Virtual Environments

My collected Pipenv "stuff"

What is the difference between venv, pyvenv, pyenv, virtualenv, virtualenvwrapper, pipenv, etc.

Virtual Environments and Packages (tutorial)

venv - Creation of virtual environments (library)