ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Can you tell us why you installed rosbridge_suite
from source (ie: git clone ..
) instead of sudo apt-get install ros-$distro-rosbridge-suite
? Do you want to use rosbridge
or develop for it?
2 | No.2 Revision |
Can you tell us why you installed rosbridge_suite
from source (ie: git clone ..
) instead of sudo apt-get install ros-$distro-rosbridge-suite
? Do you want to use rosbridge
or develop for it?
If you only want to use it, please throw away your source checkout and just sudo apt-get install ros-indigo-rosbridge-suite
in a terminal. That should install everything for you.
import bson ImportError: No module named bson
This basically tells you that you didn't install all required dependencies before trying to use the package(s). In a source install, you are responsible for making sure you've checked the requirements.
Installation of pre-built binaries will take care of dependency resolution and setup.
3 | No.3 Revision |
Can you tell us why you installed rosbridge_suite
from source (ie: git clone ..
) instead of sudo apt-get install ros-$distro-rosbridge-suite
? Do you want to use rosbridge
or develop for it?
If you only want to use it, please throw away your source checkout and just sudo apt-get install ros-indigo-rosbridge-suite
in a terminal. That should install everything for you.
import bson ImportError: No module named bson
This basically tells you that you didn't install all required dependencies before trying to use the package(s). In a source install, you are responsible for making sure you've checked the requirements.requirements. This is also not ROS specific, but basic Python.
Installation of pre-built binaries will take care of dependency resolution and setup.