OpenAI Gym Environment Wrapper for Air Hockey Game Simulator
I recommend using Anaconda3 Python distribution. You can download it from: https://www.anaconda.com/download/
- Install Air Hockey Game Simulator
- Clone the repository and install it as a python module:
git clone https://github.com/arakhmat/gym-air-hockey
cd gym-air-hockey
pip install -e .
Import the environment:
import gym
env = gym.make('AirHockey-v0')
Import the processor (required if using keras-rl):
import gym_air_hockey
processor = gym_air_hockey.DataProcessor()