Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 891 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 891 Bytes

humanoid-gym

gym env for humanoid robots including Pepper & NAO & Romeo & Dancer with pybullet

Installation

$ git clone [email protected]:0aqz0/humanoid-gym.git
$ cd humanoid-gym
$ pip install -e .

Usage

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)

References