Python Virtual Environments in Five Minutes

from blog Chris Warrick (Blog), | ↗ original
In Python, virtual environments are used to isolate projects from each other (if they require different versions of the same library, for example). They let you install and manage packages without administrative privileges, and without conflicting with the system package manager. They also allow to quickly create an environment somewhere else...