Creating a virtual Python environment using venv
Most Python programmers are already be familiar with venv
or virtualenv
, but even if you're not, it's never too late to start using it. The venv
module is designed to isolate your Python environments so that you can install packages specific to your current project without polluting your global namespace. For example, having a filename such as sys.py
in your current directory can seriously break your code if you expect to have the standard Python sys
library—your local sys libraries will be imported before the global one, effectively hiding the system library. In addition, because the packages are installed locally, you don't need system (root/administrator) access to install them.
The result is that you can make sure you have exactly the same version of a package on both your local development machine and production machines without interfering with other packages. For example, there are many Django packages around that require specific versions of the Django project. Using venv
, you can easily install Django 1.4 for project A and Django 1.8 for project B without them ever knowing that there are different versions installed in other environments. By default, the environments are even configured in such a way that the global packages are not visible. The benefit of this is that to get an exact list of all installed packages within the environment, simply a pip freeze
will suffice. The downside is that some of the heavier packages (for example, numpy
) will have to be installed in every separate environment. Needless to say, which choice is the best for your project depends on the project. For most projects, I would keep the default setting of not having the global packages, but when messing around with projects that have lots of C/C++ extensions, it would be convenient to simply enable the global site packages. The reason is simple; if you do not have a compiler available, installing the package locally can be difficult, while the global install has an executable for Windows or an installable package for Linux/Unix available.
Creating an environment is quite easy. The basic command comes down to pyvenv PATH_TO_THE_NEW_VIRTUAL_ENVIRONMENT
, so let's give it a try. Note that this command works on Linux, Unix, and Mac; the Windows command will follow shortly:
Note
Some Ubuntu releases (notably 14.04 LTS) maim the Python installation by not including the full pyvenv
package with ensurepip
. The standard workaround is to call pyvenv --without-pip test_env
, which requires a manual pip
installation through the get_pip.py
file available on the pip
home page.
This creates an environment called test_venv
, and the second line activates the environment.
On Windows, everything is slightly different but similar overall. By default, the pyvenv
command won't be in your PATH, so running the command is slightly different. The three options are as follows:
- Add the
Python\Tools\Scripts\
directory to your PATH - Run the module:
- Run the script directly:
For convenience, I would recommend that you add the Scripts
directory to your PATH anyhow, since many other applications/scripts (such as pip
) will be installed there as well.
Here is the full example for Windows:
Tip
When using Windows PowerShell, the environment can be activated by using test_venv\Scripts\Activate.ps1
instead. Note that you really do need backslashes here.
So far, we have just created a plain and regular venv
, but there are a few, really useful flags for customizing your venv
specifically to your needs.
First, let's look at the venv
help:
The most important argument to note is --system-site-packages
, which enables the global site packages within the environment. This means that if you have a package installed in your global Python version, it will be available within your environment as well. However, if you try to update it to a different version, it will be installed locally. Whenever possible, I would recommend disabling the --system-site-packages
flag because it gives you a simple environment without too many variables. A simple update of the system packages could break your virtual environment otherwise, but worse, there is no way to know which packages are needed locally and which ones are just installed for other purposes.
To enable this for an existing environment, you can simply run the environment creation command again, but this time adding the --system-site-packages
flag to enable the global site packages.
To disable it again, you can simply run the environment creation command without the flag. This will keep the locally (within the environment) installed packages available but will remove the global packages from your Python scope.
Tip
When using virtualenvwrapper
, this can also be done with the toggleglobalsitepackages
command from within the activated environment.
The --symlinks
and --copies
arguments can generally be ignored, but it is important to know the difference. These arguments decide whether the files will be copied from the base python directory or whether they will be symlinked.
Note
Symlinks are a Linux/Unix/Mac thing; instead of copying a file it creates a symbolic link that tells the system where to find the actual file.
By default, venv
will try to symlink the files, and if that fails, it will fall back to copying. Since Windows Vista and Python 3.2, this is also supported on Windows, so unless you're using a very old system, you will most likely be using symlinks in your environment. The benefit of symlinks is that it saves disk space and stays in sync with your Python installation. The downside is that if your system's Python version undergoes an upgrade, it can break the packages installed within your environment, but that can easily be fixed by reinstalling the packages using pip
.
Finally, the --upgrade
argument is useful if your system Python version has been upgraded in-place. The most common use case for this argument is for repairing broken environments after upgrading the system Python with a copied (as opposed to symlinked) environment.
Differences between virtualenv and venv
Since the venv
module is essentially a simpler version of virtualenv
, they are mostly the same, but some things are different. Also, since virtualenv
is a package that is distributed separately from Python, it does have some advantages.
The following are the advantages of venv
over virtualenv
:
venv
is distributed with Python 3.3 and above, so no separate install is neededvenv
is simple and straightforward with no features besides the bare necessities
Advantages of virtualenv
over venv
:
virtualenv
is distributed outside of Python, so it can be updated separately.virtualenv
works on old Python versions, but Python 2.6 or a higher version is recommended. However, Python 2.5 support is possible with older versions (1.9.x or lower).- It supports convenient wrappers, such as
virtualenvwrapper
(http://virtualenvwrapper.readthedocs.org/)
In short, if venv
is enough for you, use it. If you are using an old Python version or want some extra convenience, such as virtualenvwrapper
, use virtualenv
instead. Both projects essentially do the same thing, and efforts have been made to easily switch between them. The biggest and most significant difference between the two is the wide variety of Python versions that virtualenv
supports.