5i3RRA-Book:mecanum matthewj$ python3 robot.py sim
Traceback (most recent call last):
File "robot.py", line 3, in
import robotpy_ext.common_drivers.navx as navx
ModuleNotFoundError: No module named 'robotpy_ext.common_drivers.navx'
It seems the new navx installation is no longer plugged into the robotpy_ext.common_drivers
If we have the following in the robot.py code:
import robotpy_ext.common_drivers.navx as navx
And we run the robot simulator like this:
python3 robot.py sim
We get the following error:
5i3RRA-Book:mecanum matthewj$ python3 robot.py sim Traceback (most recent call last): File "robot.py", line 3, in
import robotpy_ext.common_drivers.navx as navx
ModuleNotFoundError: No module named 'robotpy_ext.common_drivers.navx'
It seems the new navx installation is no longer plugged into the robotpy_ext.common_drivers