I am trying to run the following ex:
import gym import doom_py env = gym.make('DoomBasic-v0') env.reset() env.render()
I am able to build the package using pip install -e . However when I am trying to import the package in python 2.7, I am getting the following error message
error.
I think I didn't install any module named vizdoom. However I build the VizDoom using the instructions mentioned here. Therefore I have everything mentioned in ./doom-py/doom-py/init.py
I also tried to comment the error line. However I got this error then.
Please let me know what is the correct way to install.
I also checked out openai branches like doom-whip, master, pull-in-doom, robotics.
It can just be a problem of checking out the correct branch of openai gym.
The error turns out to be a silly one. The fork of the gym was not the correct branch.
For anyone stuck with this error, try with branch which has doom mentioned in the readme file like robotics.
I am trying to run the following ex:
import gym import doom_py env = gym.make('DoomBasic-v0') env.reset() env.render()
I am able to build the package using
pip install -e .
However when I am trying to import the package in python 2.7, I am getting the following error message error. I think I didn't install any module named vizdoom. However I build the VizDoom using the instructions mentioned here. Therefore I have everything mentioned in ./doom-py/doom-py/init.pyI also tried to comment the error line. However I got this error then. Please let me know what is the correct way to install. I also checked out openai branches like doom-whip, master, pull-in-doom, robotics. It can just be a problem of checking out the correct branch of openai gym.