virtualenv-distribute

Virtual Python Environment builder
Download

virtualenv-distribute Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • Florian Schulze
  • Publisher web site:

virtualenv-distribute Tags


virtualenv-distribute Description

Virtual Python Environment builder virtualenv-distribute is a fork of the virtualenv utility using distribute instead of setuptools.The fork was started by Philip Jenvey at http://bitbucket.org/pjenvey/virtualenv-distribute/ and this version by Florian Schulze lives at http://bitbucket.org/fschulze/virtualenv-distribute/virtualenv is a successor to workingenv, and an extension of virtual-python.It is written by Ian Bicking, and sponsored by the Open Planning Project. It is licensed under an MIT-style permissive license.You can install it with easy_install virtualenv-distribute, or from the subversion repository with easy_install virtualenv==dev.What It Doesvirtualenv is a tool to create isolated Python environments.The basic problem being addressed is one of dependencies and versions, and indirectly permissions. Imagine you have an application that needs version 1 of LibFoo, but another application requires version 2. How can you use both these applications? If you install everything into /usr/lib/python2.4/site-packages (or whatever your platform's standard location is), it's easy to end up in a situation where you unintentionally upgrade an application that shouldn't be upgraded.Or more generally, what if you want to install an application and leave it be? If an application works, any change in its libraries or the versions of those libraries can break the application.Also, what if you can't install packages into the global site-packages directory? For instance, on a shared host.In all these cases, virtualenv can help you. It creates an environment that has its own installation directories, that doesn't share libraries with other virtualenv environments (and optionally doesn't use the globally installed libraries either).The basic usage is:python virtualenv.py ENVIf you install it you can also just do virtualenv ENV.This creates ENV/lib/python2.4/site-packages (or ENV/lib/python2.5/site-packages on Python 2.5, etc), where any libraries you install will go. It also creates ENV/bin/python, which is a Python interpreter that uses this environment. Anytime you use that interpreter (including when a script has #!/path/to/ENV/bin/python in it) the libraries in that environment will be used. (Note for Windows: scripts and executables on Windows go in ENVScripts; everywhere you see bin/ replace it with Scripts)It also installs distribute for you, and if you use ENV/bin/easy_install the packages will be installed into the environment. Requirements: · Python What's New in This Release: · upgrade distribute to 0.6.6


virtualenv-distribute Related Software