Click to go back

Python Virtual Environment

Every system has one central place where its python files and packages are at. But if there are multiple python projects each of it running its own version of a package eg matplotlib where one project requires version 2.2 and another project requires version 2.3.

But every version of python can run only one version of the package so it is not possible for two projects running the same version of python to run with two versions of matplotlib



As a result, python virtual environments were brought in. The idea is we would create individual folders with its own python files and packages for every project. That way each project can have its own version of packages and python to run against

To create a virtual environment in your project folder do the following

user@host:~$ python3 -m venv virtual_env

This will create a folder in your project that contains a localized version of python and pip and setuptools installed. The version of python installed is the same version of the python that you used to run the command with

Usually any packages you install will install into the global directory and the python that you use is also global to see where your global python resides you can do a which command and see the result

user@host:~$ which python3

/usr/bin/python3

But once the virtual environment is created, we can activate it and use the python that is present inside. The virtual environment is basically a folder that just contains its own copy of python, pip, setuptools and so on

All packages that are installed will be installed here (assuming the environment is activated)

user@host:~$ source virtual_env/bin/activate

Doing this would activate the environment and this is clear from the user prompt in the terminal

(virtual_env) user@host:~$

And typing in which python will only point to the python that is inside the virtual_env directory and any new packages that are installed with pip will be installed to virtual_env/lib/python3/site-packages