Virtual Python Environment builder
Project description
Virtualenv
Mailing list | Issues | Github | PyPI | User IRC: #pypa Dev IRC: #pypa-dev
Introduction
virtualenv 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.7/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 access the globally installed libraries either).
Release History
16.1.0 (2018-10-31)
Fixed documentation to use pypi.org and correct curl options; #1042
bug fix: ensure prefix is absolute when creating a new virtual environment #1208
upgrade setuptools from 39.1.0 to 40.5.0
upgrade wheel from 0.31.1 to 0.32.2
upgrade pip from 10.0.1 to 18.1
activate.csh does not use basename and handles newlines #1200
fix failure to copy on platforms that use lib64 #1189
enable tab-completion in the interactive interpreter by default, thanks to a new sys.__interactivehook__ on Python 3 #967
suppress warning of usage of the deprecated imp module #1238
16.0.0 (2018-05-16)
Drop support for Python 2.6.
Upgrade pip to 10.0.1.
Upgrade setuptools to 39.1.0.
Upgrade wheel to 0.31.1.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file virtualenv-16.1.0.tar.gz
.
File metadata
- Download URL: virtualenv-16.1.0.tar.gz
- Upload date:
- Size: 2.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f899fafcd92e1150f40c8215328be38ff24b519cd95357fa6e78e006c7638208 |
|
MD5 | c5cee0abd3051f51e2dfe8c48f1c0aa5 |
|
BLAKE2b-256 | 4e8b75469c270ac544265f0020aa7c4ea925c5284b23e445cf3aa8b99f662690 |
Provenance
File details
Details for the file virtualenv-16.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: virtualenv-16.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 1.9 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 686176c23a538ecc56d27ed9d5217abd34644823d6391cbeb232f42bf722baad |
|
MD5 | 7b52e0994182fb1cbfbebb82411dca61 |
|
BLAKE2b-256 | 7c179b7b6cddfd255388b58c61e25b091047f6814183e1d63741c8df8dcd65a2 |