Unable to Install rosbridge under ros jade
I am using ROS jade under Ubountu 14.04. I try to install rosbridge using
sudo apt-get install ros-<rosdistro>-rosbridge-suite ,
this command provided in woki.ros.org.
it replays
bash : rosdistro: No Such file or directory.
please Help,
Asked by SalahUddin on 2015-06-27 04:19:50 UTC
Answers
sudo apt-get install ros-<rosdistro>-rosbridge-suite
You need to replace <rosdistro>
with the name of the ROS distribution / release you are using. In your case jade
. So the install command becomes:
sudo apt-get install ros-jade-rosbridge-suite
That formatting (so using <rosdistro>
to mean "any ROS distribution") is used all over the wiki, so pay attention when you see it on other pages.
Asked by gvdhoorn on 2015-06-27 05:24:27 UTC
Comments
Thanks a lot. ;) it works.
Asked by SalahUddin on 2015-06-27 08:32:52 UTC
Comments