virtualenv is a tool to create isolated Python environments. A virtual environment has its own Python libraries, and can have different versions of libraries from other environments. Using this, you can avoid version conflicts for different applications.
Tox as is a generic virtualenv management and test command line tool you can use for:
* checking your package installs correctly with different Python versions and interpreters
* running your tests in each of the environments, configuring your test tool of choice
* acting as a frontend to
... [More] Continuous Integration servers, greatly reducing boilerplate and merging CI and shell-based testing. [Less]
virtualenvwrapper is a set of extensions to Ian Bicking’s virtualenv tool. The extensions include wrappers for creating and deleting virtual environments and otherwise managing your development workflow, making it easier to work on more than one project at a time without introducing conflicts in their dependencies.
This site uses cookies to give you the best possible experience.
By using the site, you consent to our use of cookies.
For more information, please see our
Privacy Policy