Skip to content

Virtual Environment Setup

It is recommended to use a virtual environment to install the project dependencies.

Create a virtual environment

You can create a virtual environment using the following command:

python -m venv .venv

Activate the virtual environment

To activate the virtual environment, you can use the following command:

source .venv/bin/activate

Install dependencies

To install the project dependencies, you can use the following command:

pip install -r requirements.txt