Working with Virtualenv
Virtualenv is a tool that lets you create isolated environments for your Python projects. It addresses the issues of application dependencies and versions of software for each of your Python projects. Imagine that you had one project that required v1 of the Foo library and then another project that required v2 of the same library.… Read More »