소스 검색

Add 'import minigrid' to example in docs/index.md. (#458)

Carlos Martin 3 달 전
부모
커밋
e1560ba8e3
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      docs/index.md

+ 1 - 0
docs/index.md

@@ -27,6 +27,7 @@ The Gymnasium interface allows to initialize and interact with the Minigrid defa
 ```{code-block} python
 
 import gymnasium as gym
+import minigrid
 env = gym.make("MiniGrid-Empty-5x5-v0", render_mode="human")
 observation, info = env.reset(seed=42)
 for _ in range(1000):