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.
 
 
 
 
 
 
sp 49dc726d4d example lava and wall block in playground 3 weeks ago
..
_scripts Framework for HW11 3 weeks ago
_static Framework for HW11 3 weeks ago
api Framework for HW11 3 weeks ago
content Framework for HW11 3 weeks ago
environments Framework for HW11 3 weeks ago
404.md Framework for HW11 3 weeks ago
LICENSE Framework for HW11 3 weeks ago
Makefile Framework for HW11 3 weeks ago
README.md Framework for HW11 3 weeks ago
conf.py Framework for HW11 3 weeks ago
index.md Framework for HW11 3 weeks ago
make.bat Framework for HW11 3 weeks ago
release_notes.md Framework for HW11 3 weeks ago
requirements.txt Framework for HW11 3 weeks ago

README.md

MiniGrid documentation

This folder contains the documentation for MiniGrid.

For more information about how to contribute to the documentation go to our CONTRIBUTING.md

Editing an environment page

If you are editing an Atari environment, directly edit the Markdown file in this repository.

Otherwise, fork Gym and edit the docstring in the environment's Python file. Then, pip install your Gym fork and run docs/_scripts/gen_env_docs.py in this repo. This will automatically generate a md documentation file for the environment.

Build the Documentation

Install the required packages and Minigrid:

pip install -r docs/requirements.txt
pip install -e .

To build the documentation once:

cd docs
make dirhtml

To rebuild the documentation automatically every time a change is made:

cd docs
sphinx-autobuild -b dirhtml . _build