Start Python in Virtual Environment (virtualenv)
by flandersen
Posted on February 23, 2019
Virtual environments in Python are used to decouple the dependencies of multiple python projects by putting them into a project sub-directory. It is not to be confused with Virtual Machines, which can isolate code execution from the host system, but in contrast require a separate operating system and a lot more system resources.
The dependencies can now be found in the sub-folder .venv
.
For further informations about using virtual environments in Python:
https://packaging.python.org/guides/installing-using-pip-and-virtualenv/
Previous article