A-Guide-to-DeepMinds-StarCraft-AI-Environment
A-Guide-to-DeepMinds-StarCraft-AI-Environment copied to clipboard
This is the code for "A Guide to DeepMind's StarCraft AI Environment" by Siraj Raval on Youtube
After Folowing all the steps exactly i got this error `ModuleNotFoundError: No module named 'baselines' and yes i installed baseline but it had this error ``` running bdist_wheel running build...
I try to run it. I did everything told in the README.md file and I also replaced the correct line with `from absl import flags`. Now I got an other...
It will need to fix scripts because of some pip modules has been updated. I tested in python3.6 and tensorflow1.4 version and it works well.
`python train_mineral_shards.py` generates the following error: ``` Traceback (most recent call last): File "train_mineral_shards.py", line 3, in import gflags as flags ModuleNotFoundError: No module named 'gflags' ```
Sometimes 'baselines' fail to install due to lack of dependencies. Added the necessary commands that fix it. Tested and it worked for me.
The old import flags is not working so I added an import flags that works.
The old import flags doesn't work so I updated to a new working import.
Fixing two tiny issues (#1 and #2): - Arguments for the SC2Env have to be given as keyword arguments. - gflags fails during the initialization of the SC2Env, but absl.flags...