I open evogym as project on my PyCharm 2019.2.4 (Professional) and mark the examples folder as Source Root. I then try to run the example
python run_group_ppo.py --algo ppo --use-gae --lr 2.5e-4 --clip-param 0.1 --value-loss-coef 0.5 --num-processes 4 --num-steps 128 --num-mini-batch 4 --log-interval 100 --use-linear-lr-decay --entropy-coef 0.01 --eval-interval 50
from PyCharm, but I get
File "evogym/evogym/sim.py", line 11, in
from evogym.simulator_cpp import Sim
ModuleNotFoundError: No module named 'evogym.simulator_cpp'
However, when running the command python run_group_ppo.py from terminal, the experiment runs. How do I adjust the project so to run in PyCharm (or any other IDE)?
It would be helpful for debug purposes.
I open
evogym
as project on my PyCharm 2019.2.4 (Professional) and mark theexamples
folder as Source Root. I then try to run the examplepython run_group_ppo.py --algo ppo --use-gae --lr 2.5e-4 --clip-param 0.1 --value-loss-coef 0.5 --num-processes 4 --num-steps 128 --num-mini-batch 4 --log-interval 100 --use-linear-lr-decay --entropy-coef 0.01 --eval-interval 50
from PyCharm, but I get
File "evogym/evogym/sim.py", line 11, in
from evogym.simulator_cpp import Sim
ModuleNotFoundError: No module named 'evogym.simulator_cpp'
However, when running the command
python run_group_ppo.py
from terminal, the experiment runs. How do I adjust the project so to run in PyCharm (or any other IDE)? It would be helpful for debug purposes.