ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

It seems that catkin can't find turtlebot_node in your ROS_PACKAGE_PATH. Make sure that turtlebot_node is installed, and that your ROS_PACKAGE_PATH contains the path to turtlebot_node's install directory. You can check the current value of ROS_PACKAGE_PATH by typing:

echo $ROS_PACKAGE_PATH

To update it, just type:

export ROS_PACKAGE_PATH=/path/to/dir:$ROS_PACKAGE_PATH

Here is a similar problem.

It seems that catkin can't find turtlebot_node in your ROS_PACKAGE_PATH. Make sure that turtlebot_node is installed, installed (rospack list-names | grep turtlebot), and that your ROS_PACKAGE_PATH contains the path to turtlebot_node's install directory. You can check the current value of ROS_PACKAGE_PATH by typing:

echo $ROS_PACKAGE_PATH

To update it, just type:

export ROS_PACKAGE_PATH=/path/to/dir:$ROS_PACKAGE_PATH

Here is a similar problem.

It seems that catkin can't find turtlebot_node in your ROS_PACKAGE_PATH. Make In theory, you just need to make sure that turtlebot_node is installed (rospack list-names | grep turtlebot), and that your ROS_PACKAGE_PATH contains the path to turtlebot_node's install directory. You can check the current value of ROS_PACKAGE_PATH by typing:

echo $ROS_PACKAGE_PATH

To update it, just type:

export ROS_PACKAGE_PATH=/path/to/dir:$ROS_PACKAGE_PATH

However, in your case, it seems that turtlebot_node was removed with Groovy, so you should not even try to depend on it. For more information on turtlebot (which seems to be what you actually need), check the official documentation.

Here is a similar problem.

It seems that catkin can't find turtlebot_node in your ROS_PACKAGE_PATH. In theory, you just need to make sure that turtlebot_node is installed ((e.g. rospack list-names | grep turtlebot), and that your ROS_PACKAGE_PATH contains the path to turtlebot_node's install directory. You can check the current value of ROS_PACKAGE_PATH by typing:

echo $ROS_PACKAGE_PATH

To update it, just type:

export ROS_PACKAGE_PATH=/path/to/dir:$ROS_PACKAGE_PATH

However, in your case, it seems that turtlebot_node was removed with Groovy, so you should not even try to depend on it. For more information on turtlebot (which seems to be what you actually need), check the official documentation.

Here is a similar problem.

It seems that catkin can't find turtlebot_node in your ROS_PACKAGE_PATH. In theory, you just need to make sure that turtlebot_node is installed (e.g. rospack list-names | grep turtlebot), and that your ROS_PACKAGE_PATH contains the path to turtlebot_node's install directory. You can check the current value of ROS_PACKAGE_PATH by typing:

echo $ROS_PACKAGE_PATH

To update it, just type:

export ROS_PACKAGE_PATH=/path/to/dir:$ROS_PACKAGE_PATH

However, in your case, it seems that turtlebot_node was removed with Groovy, so you should not even try to depend on it. For more information on turtlebot (which seems to be what you actually need), check the official documentation official documentationhere and there.

Here is a similar problem.