Thomas Köppe

Results 129 comments of Thomas Köppe

No, the SDL_opengl.h file should be part of the SDL library. Can you do something like `find -L /usr -name SDL_opengl.h` or so to look for it? And also look...

@shaktikshri: did you look for the file? Where is it?

Does anyone here need any help with anything? I haven't looked at the Mac branch for a while, but let me know if there are remaining problems.

Why are you calling `observations()`? Shouldn't you have noticed that the environment has timed out the last time you applied actions?

Hm, it works for me now, could you just try again? Maybe run `bazel clean --expunge` first?

@o00000o: can you please describe the error in words rather than with a context-free screenshot? All I was were errors downloading libjpeg, which I can't reproduce. If you have other...

Hm, I'm not sure right now if the PY2 version still works. DeepMind Lab should support PY2, but it's possible that other dependencies have dropped support. Coud you try the...

@charlesbeattie: could you perhaps take a look?

Right, the runfiles directory needs to be made known to the Python module. When you run the executable via Bazel, then the hardcoded default is correct (https://github.com/deepmind/lab/blob/master/python/dmlab_module.c#L941), but if you...

The runfiles path is passed to the DSO loader parameters: https://github.com/deepmind/lab/blob/master/python/dmlab_module.c#L187 Those parameters are used to locate the `.so` files: https://github.com/deepmind/lab/blob/master/public/dmlab_so_loader.cc#L205-L212 So the path needs to be wherever libdmlab_headless_sw.so etc....