Closed bastiankayser closed 5 years ago
Hi,
Unfortunately, there seems to be incompatibilities specific to Windows, which do not occur on linux or mac.
trainMLAgents.py
worked on windows before we integrated Dopamine which requires tensorflow>=1.12
. If you want to run the PPO example on windows you can try the old setup.py
file for animalai-train
which makes trainMLAgents.py
work again but therefore prevents trainDopamine.py
from working. Installing animalai-train
using the following requirements seems to fix the issue:
install_requires=[
'animalai>=1.0.2',
'dopamine-rl',
"tensorflow>=1.7,<1.8",
'matplotlib',
'Pillow',
"numpy>=1.13.3,<=1.14.5",
"protobuf>=3.6,<3.7",
"grpcio>=1.11.0,<1.12.0",
'pyyaml',
'atari-py',
'jsonpickle',
'pypiwin32;platform_system=="Windows"']
Unfortunately we do not have the resources to fully support animalai-train
on Windows at the moment (which is not required to compete and is provided as a starter pack only). The animalai
package should work fine on Windows.
The following exception occurs when I run trainMLAgents.py with the provided configuration: