Closed LuanBaviloni closed 2 years ago
I ran into this issue as well- a quick fix for me was to change line 19 in flightmare/flightpy/flightrl/setup.py
from
packages=['rpg_baselines'],
to
packages=find_packages(),
Hope this helps!
alternatively, you can append the rpg_baselines path to your python path
export PYTHONPATH="${PYTHONPATH}:/path/to/flightpy/flightrl"
Solved! Thank you guys!