On your windows terminal
python -m venv venv
\venv\Scripts\activate
pip install -r requirements.txt
- play
- RandomlyAgent -> random
- ValueIterationAgent -> value
- QLearningAgent -> q-l
In the
main.py
file change thegame_type
parametergame = Game("RL-Challenge" , map_path, cell_size, game_type="q-l", fps=120) game.start()