ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
In the event of the following error: ModuleNotFoundError: No module named 'numpy'
This error indicates numpy
library is not installed as a dependency for Python 3.
To resolve:
sudo apt install python3-numpy
If you use pip3 (not recommended)
pip3 install numpy