# Trying out MiniHack MiniHack uses the popular [Gymnasium interface](https://github.com/Farama-Foundation/Gymnasium) for the interactions between the agent and the environment. A pre-registered MiniHack environment can be used as follows: ```python import gymnasium as gym import minihack env = gym.make("MiniHack-River-v0") env.reset() # each reset generates a new environment instance env.step(0) # move agent '@' north env.render() ``` The `gym.make` command can also be used to override specific environment parameters: ```python env = gym.make( "MiniHack-River-v0", observation_keys=("pixel", "glyphs", "colors", "chars"), max_episode_steps=100, ) ``` To see the list of all MiniHack environments, run: ```bash python -m minihack.scripts.env_list ``` ## Playing as a human The following scripts allow to play MiniHack environments with a keyboard: ```bash # Play the MiniHack in the Terminal as a human $ python -m minihack.scripts.play --env MiniHack-River-v0 # Use a random agent $ python -m minihack.scripts.play --env MiniHack-River-v0 --mode random # Play the MiniHack with graphical user interface (gui) $ python -m minihack.scripts.play_gui --env MiniHack-River-v0 ``` ````{note} If the package has been properly installed, one could run the scripts above with `mh-envs`, `mh-play`, and `mh-guiplay` commands. ````