Science and technology

A information to Python digital environments with virtualenvwrapper

For a while, Python has included help for managing digital environments. Python three.three even added the built-in venv module for creating environments with out third-party libraries. Python programmers use a number of completely different instruments to handle their environments, and the one I take advantage of is named virtualenvwrapper.

Virtual environments are a manner of separating your Python undertaking and its dependencies out of your system-installed Python. If you utilize a macOS or Linux-based working system, it very doubtless comes with a model of Python as a part of the set up, and in reality, it would most likely be depending on that exact model of Python to perform correctly. But it is your pc, and it’s possible you’ll wish to use it in your personal functions. You may have to put in one other model of Python than the working system gives. You may have to put in some extra libraries, too. Although it is attainable to improve your system Python, it is not really helpful. It’s additionally attainable to put in different libraries, however you should take care to not intrude with something the system depends on.

Virtual environments are key to creating the isolation you must safely tinker with completely different variations of Python and completely different combos of packages. They additionally can help you set up completely different variations of the identical library for various initiatives, which resolves what could be inconceivable if all your initiatives’ necessities have been put in in the identical surroundings.

Why virtualenvwrapper over different instruments? In quick:

  • Rather than having a venv listing inside or alongside your undertaking listing, virtualenvwrapper retains all of your environments in a single place: ~/.virtualenvs by default.
  • It gives instructions for creating and activating environments simply, and the activation does not depend on finding the best activate script. It’s simply workon projectname (from wherever) relatively than supply ~/Projects/flashylights-env/bin/activate

Getting began

First of all, it is necessary to take the time to grasp how your system Python is configured and a bit about how the pip software works.

To use the Raspberry Pi OS for example, the working system comes with each Python 2.7 and three.7 put in. It additionally gives separate cases of pip, one for every model:

  • The command python runs Python 2.7 and is situated at /usr/bin/python.
  • The command python3 runs Python three.7 and is situated at /usr/bin/python3.
  • The command pip installs packages for Python 2.7 and is situated at /usr/bin/pip.
  • The command pip3 installs packages for Python three.7 and is situated at /usr/bin/pip3.

It’s helpful to confirm your individual state of affairs in terms of the python and pip instructions earlier than beginning to use digital environments. More details about your pip cases might be discovered by working the command pip debug or pip3 debug.

The equal data on my Linux pc, which runs Ubuntu, is sort of equivalent (besides that it is Python three.eight); and it’s totally related on my Macbook, besides that the one system Python is 2.6, and I used brew to set up Python three.eight, so it is situated at /usr/native/bin/python3 as an alternative (together with pip3).

Installing virtualenvwrapper

You’ll want to put in virtualenvwrapper utilizing your system pip for Python three:

sudo pip3 set up virtualenvwrapper

The subsequent step is to configure your shell to load the virtualenvwrapper instructions. You do that by enhancing your shell’s RC file (e.g. .bashrc, .bash_profile, or .zshrc) and including the next strains:

export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
export VIRTUALENVWRAPPER_VIRTUALENV=/usr/native/bin/virtualenv
supply /usr/native/bin/virtualenvwrapper.sh

If your Python three is situated elsewhere, change the primary line in keeping with your setup.

Close your terminal and reopen it for this to take impact. The first time you open the terminal, you need to see some output from virtualenvwrapper. This will solely occur as soon as, as some directories are created as a part of the setup.

Now you need to have the ability to kind the command mkvirtualenv --version to confirm that virtualenvwrapper is put in.

Creating a brand new digital surroundings

Say you are engaged on a undertaking known as flashylights. To create a digital surroundings with this title, run the command:

mkvirtualenv flashylights

The surroundings has been created and activated, so you may see that (flashlylights) seems earlier than your immediate:

Now that the surroundings is activated, issues have modified. The python now factors at a totally completely different Python occasion than the one(s) you recognized in your system earlier. It’s created a listing in your surroundings and positioned a duplicate of the Python three binary, the pip command, and extra inside it. Type which python and which pip to see the place they’re situated:

If you run a Python program now, you’ll be able to run it with python as an alternative of python3, and you need to use pip as an alternative of pip3. Any packages you put in utilizing pip might be put in inside this surroundings alone, and they won’t intrude along with your different initiatives, different environments, or your system set up.

To deactivate the surroundings, run the command deactivate. To re-enable it, run workon flashylights.

You can record all accessible environments with workon or use lsvirtualenv. You can delete an surroundings with rmvirtualenv flashylights.

Adding digital environments to your improvement routine is a smart factor to do. In my expertise, it retains me from putting in libraries I am experimenting with system-wide, which may result in issues. I discover virtualenvwrapper the best manner for me to get into that routine and handle my undertaking environments hassle-free with out pondering an excessive amount of or remembering too many instructions.

Advanced options

  • You can set up a number of Python variations in your system (e.g., utilizing the deadsnakes PPA on Ubuntu) and create a digital surroundings with that exact model utilizing, for instance, mkvirtualenv -p /usr/bin/python3.9 myproject.
  • You can automate activation/deactivation upon getting into/leaving a listing.
  • You can use the postmkvirtualenv hook to put in frequent instruments each time a brand new surroundings is created.

See extra suggestions in the docs.


This article is predicated on Ben Nuttall’s Tooling Tuesday post on virtualenvwrapper and is reused with permission.

Most Popular

To Top