- Create a conda environment that will contain python 3:
conda create -n rl_coup python=3.9
- activate the environment (do this every time you open a new terminal and want to run code):
source activate rl_coup
- Install the requirements into this conda environment
cd src
pip install -r requirements.txt
- Allow your code to be able to see 'coup'
$ pip install -e .
You can visualize your runs using tensorboard:
tensorboard --logdir data