- Step1: Clone the repository `git clone https://github.com/reubenjohn/multiagent_envs.git`
- Step2: Install dependencies with `pip install -r requirements.txt`
- Step3: Import an environment, e.g. `from multiagent_envs.envs.simple_spread import SimpleSpreadEnv`
- Step4: Initialize the environment `env = SimpleSpreadEnv()`
- Step5: Reset and step through: `obs = env.reset(); obs, rewards, done, info = env.step(actions)`
- Step6: Integrate with your RL loop or library for training and evaluation