Cannot download ros-kinetic-ros-tutorials
Making my way through this guide right here. Currently running Kinetic on the Raspbian Jessie Lite, which itself is running on the Raspberry Pi 3. So I'm trying to complete the pre-requisite which is the command:
sudo apt-get install ros-kinetic-ros-tutorials
However, whenever I try to install this, I get the error:
E: Unable to locate package ros-kinetic-ros-tutorials
sudo
can't locate ros-indigo or ros-jade either. In terms of the etc/apt/source.list.d/ros-latest.list
, I have:
deb http://packages.ros.org/ros/ubuntu jessie main
I have done a sudo update
and a sudo upgrade
, but neither seems to work. I have noticed a lot of questions around with this problem, but can't seem to find a solution to my specific problem.
Update
After a suggestion from the two answers below, I have realised that I cannot use sudo-apt-get install
on packages when I have built ROS-Kinetic from source. Now, I have tried running the four commands:
rosinstall_generator ros_comm ros-kinetic-ros-tutorials --rosdistro kinetic --deps --wet-only --tar >kinetic-custom_ros.rosinstall
rosinstall_generator ros-kinetic-ros-tutorials --rosdistro kinetic --deps --wet-only --tar >kinetic-custom_ros.rosinstall
rosinstall_generator ros_comm ros_kinetic_ros_tutorials --rosdistro kinetic --deps --wet-only --tar >kinetic-custom_ros.rosinstall
rosinstall_generator ros_kinetic_ros_tutorials --rosdistro kinetic --deps --wet-only --tar >kinetic-custom_ros.rosinstall
But I still get the error: The following not released packages stacks will be ignored: ros-kinetic-ros-tutorials
.
What exactly am I doing wrong in trying to build this from source?