Virtual Environments

A virtual environment can be used to isolate the dependencies of each project. It is important to create a virtual environment since different projects may require different versions of packages, and Python interpreter.

There are several tools to create a virtual environment, such as venv, conda, etc. In this guide, we will use Miniconda to manage virtual environments. Miniconda is a free minimal installer for conda.

Last updated