clone the repository to some folder:
cd ~
mkdir tmp
cd tmp
git clone https://git.ias.informatik.tu-darmstadt.de/quanser/clients.git
Take the dependency file and create a new environment from it. You can find further information on creating a virtual environment here: https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#creating-an-environment-from-an-environment-yml-file
conda env create -f dependencies.yml
conda activate group19
cd clients
python3.6 -m pip install -e .
python3.6
import gym
import quanser_robots
env = gym.make('Qube-v0')
env.reset()
env.render()
- Natural Actor Critic (NAC)
- Deep Deterministic Policy Gradient (DDPG)