gym env for humanoid robots including Pepper & NAO & Romeo & Dancer with pybullet
$ git clone [email protected]:0aqz0/humanoid-gym.git
$ cd humanoid-gym
$ pip install -e .
import gym, humanoid_gym
import pybullet as p
env = gym.make('pepper-v0')
while True:
env.render()
actions = env.action_space.sample()
observation, reward, done, info = env.step(actions)