The following steps will help you setup a conda environment.
-
Install Conda https://conda.io/projects/conda/en/latest/user-guide/install/index.html
-
Create env
conda create --name fair python=3.9
- Activate env
conda activate fair
- Install required packages
pip install -r requirements.txt
- (Optional) Deactivate and remove env To deactivate or/and remove the env after you have used it, you can use the following commands
conda deactivate
conda env remove --name fair