Route_planner tutorial: No module named 'route_planner'

Hi!
When I try to work through the route_planner tutorial I get the following error:


When I open pycharm, it even suggests me to import the right packages. However when I try to run the code it doesn’t work. Any suggestions?
Thanks :slight_smile:

Hi, thanks for spotting the issue. The problem should be solved if you change the following line in the file route.py:

from route_planner.utils_route import

to

from SMP.route_planner.route_planner.utils_route import

(with SMP set as sources root in PyCharm)

Hi,

It works!

Thank you.