Virtualenv
Last updated
Was this helpful?
Last updated
Was this helpful?
is a tool that lets you create an isolated Python environment for your project. It creates an environment that has its own installation directories, that doesn’t share dependencies with other virtualenv
environments (and optionally doesn’t access the globally installed dependencies either). You can even configure what version of Python you want to use for each individual environment. It's very much recommended to use virtualenv
when dealing with Python applications.
To install virtualenv
run:
If you have a project in a directory called my-project
you can set up virtualenv
for that project by running:
If you want your virtualenv
to also inherit globally installed packages run:
These commands create a venv/
directory in your project where all dependencies are installed. You need to activate it first though (in every terminal instance where you are working on your project):
You should see a (venv)
appear at the beginning of your terminal prompt indicating that you are working inside the virtualenv
. Now when you install something like this:
It will get installed in the venv/
folder, and not conflict with other projects.
To leave the virtual environment run:
Important: Remember to add venv
to your project's .gitignore
file so you don't include all of that in your source code.
It is preferable to install big packages (like Numpy), or packages you always use (like IPython) globally. All the rest can be installed in a virtualenv
.
To make it easier to work on multiple projects that has separate environments you can install virtualenvwrapper
. It's an extension to virtualenv
and makes it easier to create and delete virtual environments without creating dependency conflicts.
To install virtualenvwrapper
run:
Note: virtualenvwrapper
keeps all the virtual environments in ~/.virtualenv
while virtualenv
keeps them in the project directory.
Depending on your setup you might need to install it using sudo
. Read the for more information.