Anssi

Results 434 comments of Anssi

One more plotting request: Try recording the difference in `tic`s and plotting it out to see if they vary (they should always be four with `frame_skip=4`). Something like: ```python tics...

Thanks! That (the spikes) shouldn't be happening, but I have no idea what could be causing it. Could you share the scenario file and the Python code for further debugging?...

Could you include Python version used, the operating system etc etc? Did you install the [dependencies](https://github.com/mwydmuch/ViZDoom/blob/master/doc/Building.md#linux_deps) (if you are on Linux/Mac)?

Hmm. Could you also include the whole output after you start installing vizdoom (the full compilation log)?

Fascinating, I am getting the following when I first tried to replicate the error. **However** when I "uninstall" vizdoom and try to install it again (in the environment), it throws...

`sudo`ing while in environment seems to use the global `pip` to install packages (or that's just my setup doing that). I tried to replicate the issue again but now everything...

Hmm that Python path looks peculiar, could be throwing off ViZDoom. What do the following commands show for you (with and without virtualenv). I think the most perplexing part here...

Check if you have any vizdoom directories in `/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages`. Seems like `pip` only cares if the `vizdoom-1.1.4.dist-info` directory is present, even if the library itself (`vizdoom`) is missing. At this...

I have no experience with Mac stuff, but could this be the issue? https://stackoverflow.com/questions/16454129/python-h-header-file-missing-on-mac-os-x-10-6 (replace `#include ` with `#include ` and add `-framework Python` to gcc parameters).

Things go beyond me at this point :(. From what I gathered around internet the problem seems to the wrong include statement. I would love to debug this myself but...