1

I was going through an Reinforcement Learning Course and wanted to try running the code locally. I installed RLGlue with pip install rlglue from here

But then when trying to run the code:

from rlglue.rl_glue import RLGlue
import main_agent
import ten_arm_env
import test_env

Received this error message: ModuleNotFoundError: No module named 'rlglue.rl_glue'

Any idea on how to fix that to import the module?

JLuu
  • 379
  • 1
  • 3
  • 17

1 Answers1

0

I use this as work-around, add this file to your project.

https://gist.github.com/niektuytel/eab1117070454042b11e5e5c026dd3fb

niek tuytel
  • 899
  • 7
  • 18