Reference implementation for function approximation in RL
For Anaconda Python, we recommend you create a separate environment as follows:
$ conda create -n rl python=3.9
$ conda activate rl
$ conda install --file requirements.txt
For pip, run the following command:
$ cd fa-rl
$ pip install -r requirements.txt
For pip + venv, run the following commands:
$ cd fa-rl
$ python3.9 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
Then run Jupyter notebook from the src
folder:
$ cd src
$ jupyter notebook