openai / multiagent-competition

Code for the paper "Emergent Complexity via Multi-agent Competition"
https://arxiv.org/abs/1710.03748
806 stars 153 forks source link

raise NotImplementedError #6

Open bear63 opened 6 years ago

bear63 commented 6 years ago

when i run the code in self.env_scene = MultiAgentScene(self._env_xml_path, self.n_agents)

This error occurred raise NotImplementedError

wweichn commented 6 years ago

Do you solve the problem? When I run bash demo_tasks.sh all, I met the same problem

scotthuang1989 commented 5 years ago

I think this is a compatibility issues. As I recall older version of gym use

_step

, but new one requires

step

this is why gym.make will fail at this line:

observation, _reward, done, _info = self.step(np.zeros(self.model.nu))

I don't if owner of this repo have plan to maitain this.

GoingMyWay commented 5 years ago

@scotthuang1989 Hi, how can I fix it with the lasted gym?