Use Miniconda for the easiest way to setup an environment.
- Install Miniconda (make sure to use a Python 3 version)
- After setting up miniconda you can make use of the
conda
command in your command line (Powershell, CMD, Bash) - We suggest that you set up a dedicated environment for this project by running
conda env create -f environment.yml
- This will setup a virtual conda environment with all necessary dependencies.
- Depending on your operating system you can activate the virtual environment with
conda activate replearn
on Linux and macOS, andactivate ad
on Windows (cmd
only). - If you want to quickly install the
replearn
package, runpip install -e .
inside the root directory. - Now you can start the notebook server by
jupyter notebook notebooks
.
Check the notebooks
directory for example Jupyter Notebooks.