Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 531 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 531 Bytes

Conda

The following steps will help you setup a conda environment.

  1. Install Conda https://conda.io/projects/conda/en/latest/user-guide/install/index.html

  2. Create env

conda create --name fair python=3.9
  1. Activate env
conda activate fair
  1. Install required packages
pip install -r requirements.txt
  1. (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