so I was trying to make a bot to train on one of the environment of Universe and on running it, I am receiving the error (ImportError: No module named universe
). Help me understand what this is and how I can fix it.
My code -
import gym
import universe
env = gym.make('HandManipulateEgg-v0')
observation_n = env.reset()
while True:
action_n = [[('KeyEvent', 'ArrowUp', True)] for ob in observation_n]
observation_n, reward_n, done_n, env.step(action_n)
env.render ()
My system details - Sayon's System Details
Any help will be deeply appreciated.