The problem of `prng` is that the gym package is updating, and prng function has been deleted. you can fix this in code `multiagent-particle-envs/multiagent/multi_discrete.py` ```python import gym # from gym.spaces import prng # this prng has been canceled ``` and change this [line](https://github.com/openai/multiagent-particle-envs/blob/69ee7f85811c77ee651722bc3c332677b2195da1/multiagent/multi_discrete.py#L33) with: ```python np_random = np.random.RandomState() random_array = np_random.rand(self.num_discrete_space) ```