matpalm / cartpoleplusplus

3d cartpole gym env using bullet physics trained from pixels with tensorflow LRPG, DDPG & NAF
http://matpalm.com/blog/cartpole_plus_plus/
MIT License
57 stars 14 forks source link

dependencies #5

Open buzzo123 opened 6 years ago

buzzo123 commented 6 years ago

can I have a list of dependencies? I've trouble with launch your py file, for example No module named event_pb2

matpalm commented 6 years ago

references to _pb2 relate to the use of protobuffs for replay buffer record/replay

you need to either 1) run protoc event.proto --python_out=. first (see README) or remove refs to the event_pb2 (i thought i had try: except: wrapped all the imports already sorry)