Skip to content

Teleop FAQ

Before you look any further, make sure you have run ./build.sh from the mrover directory.

ModuleNotFoundError: No module named 'rclpy'

Enter mrover before trying to run the basestation.

You have not entered the Python virtual environment. To enter the python venv, enter mrover in the shell. This macro runs:

$ cd ~/ros2_ws/src/mrover && source ~/ros2_ws/src/mrover/venv/bin/activate

which opens the python virtual environment and allows you to run the basestation.


From your ./build.sh output:

ZED not found
science_hw_bridge missing

Some files that CMake expects are missing. You could try and remove the #Perception and #Embedded sections in CMakeLists, and reach out to your team lead for help.


Browser shows a blank page or connection refused on localhost:8080.

Make sure the backend is running (ros2 launch mrover basestation.launch.py). Check the terminal output for errors. If you see bun/npm errors, try:

cd teleoperation/basestation_gui/frontend
bun install

Then relaunch the basestation.


From your ./build.sh output:

fatal error: 'unique_identifier_msgs/msg/detail/uuid__struct.h' file not found

Run ./clean.sh then ./build.sh from the mrover directory.


The manifpy repository is not installed or activated correctly. Try the code below, running from your mrover directory. If that doesn’t work, reach out to your team lead.

sudo apt-get install libeigen3-dev
cd && git clone https://github.com/artivis/manif.git
cd manif
python3 -m pip install .
cd ~/ros2_ws/src/mrover
git submodule update --init deps/manif