The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

666 B

layout title firstpage
contents Basic Usage <nil>

Basic Usage

There is a UI application which allows you to manually control the agent with the arrow keys:

./minigrid/manual_control.py

The environment being run can be selected with the --env option, eg:

./minigrid/manual_control.py --env MiniGrid-Empty-8x8-v0

Installation

Minigrid call be installed via pip:

python3 -m pip install minigrid

To modify the codebase or contribute to Minigrid, you would need to install Minigrid from source:

git clone https://github.com/Farama-Foundation/Minigrid.git
cd Minigrid
python3 -m pip install -e .