Create an environment based on the dependencies.
Create environment from yaml file:
conda env create --file environment.yml
Activate:
conda activate tbws-ha
Create environment:
python3 -m venv tbws-ha-venv
Activate:
tbws-ha-venv\Scripts\activate
Install requirements:
pip install -r requirements.txt
Or instead of creating an environment, update an existing environment with the dependencies.
Update environment:
conda env update --name env_name --file environment.yml
Install requirements:
pip install -r requirements.txt