Robogym install works when installed with the ```-e``` flag but fails in non-editable mode: ``` git clone git@github.com:openai/robogym.git cd robogym pip install . ``` or ``` pip install git+https://github.com/openai/robogym.git ``` The problem may be the lack of ```__init__.py``` files causing setuptools ```find_packages()``` to not pickup the code.
Robogym install works when installed with the
-eflag but fails in non-editable mode:or
The problem may be the lack of
__init__.pyfiles causing setuptoolsfind_packages()to not pickup the code.