ros-kinetic-control*: command not found
Getting this message: ros-kinetic-control*: command not found
after running:
sudo apt install ros-kinetic-ros-control* && ros-kinetic-control* && ros-kinetic-moveit*
(one of the sdtatements whilst setting up openmanipulator with tb3 https://emanual.robotis.com/docs/en/platform/turtlebot3/manipulation/#manipulation)
when run on ubuntu 16.04 and ros-kinetic on turtlebot. Basically integrating openmanipulator-x and turtlebot3. Any recommendations to avoid this by changing OS for PC or the turtlebot OR any fix thorough shell command?
Asked by syed yunas on 2021-04-04 04:36:51 UTC
Answers
Getting this message: ros-kinetic-control*: command not found
after running:
sudo apt install ros-kinetic-ros-control* && ros-kinetic-control* && ros-kinetic-moveit*
Only the first part is a valid apt
installation command.
I guess the author of the documentation you link to intended to write something like this:
sudo apt install ros-kinetic-ros-control* ros-kinetic-control* ros-kinetic-moveit*
And please note: this is not ROS-specific. apt
is part of Debian and Ubuntu, not ROS.
Asked by gvdhoorn on 2021-04-04 11:04:57 UTC
Comments
You can try execute each command seprately because with
&&
if one command fail the others will not be executed so you will not know which command is giving the errorAsked by mohamed ahmed on 2021-04-04 05:32:54 UTC