virtualenv¶
virtualenv is a tool to create isolated Python environments. Since Python 3.3, a subset of it has been integrated
into the standard library under the venv module. For how virtualenv compares to the stdlib venv module, see
Explanation.
External resources¶
Learn more about virtualenv from these community resources:
Corey Schafer’s virtualenv tutorial — Video walkthrough for beginners
Bernat Gabor’s status quo — Talk about the current state of Python packaging
Carl Meyer’s reverse-engineering — Deep dive into how virtualenv works internally