Install problem on Linux Mint 12
Looking for some guidance on a very unhelpful error message. I am trying to perform a full desktop install from source for ROS on a machine running Linux Mint 12 using the instructions at http://www.ros.org/wiki/electric/Installation/Ubuntu/Source. For this machine, "uname -a" gives: Linux mobile 3.0.0-12-generic #20-Ubuntu SMP Fri Oct 7 14:50:42 UTC 2011 i686 i686 i386 GNU/Linux.
I have used the sections that are specific to Ubuntu 11.10 (Oneiric), on which Mint 12 appears to be based, but I run into an error when running rosinstall (rosinstall ~/ros "http://packages.ros.org/cgi-bin/gen_rosinstall.py?rosdistro=electric&variant=desktop-full&overlay=no"). It appears as if this is somewhere in some Python code (which I have no familiarity with) and the actual message is KeyError: '12'. The raw output is as follows (sorry for the formatting, can't quite work out how to handle line breaks and angle brackets in Markdown):
Bootstrapping ROS build
Detected ros_comm bootstrapping it too.
[ rosmake ] Packages requested are: ['ros', 'ros_comm']
[ rosmake ] Logging to directory/home/bd/.ros/rosmake/rosmake_output-20120219-112427
[ rosmake ] Expanded args ['ros', 'ros_comm'] to:
['test_rosdep', 'test_rosmake', 'test_rospack', 'test_roslib', 'test_roscreate', 'rosboost_cfg', 'rosemacs', 'rosbash', 'rosclean', 'rospack', 'rosmake', 'rosunit', 'rosdep', 'roscreate', 'roslib', 'rosbuild', 'roslang', 'mk', 'std_srvs', 'std_msgs', 'rosgraph_msgs', 'test_roslib_comm', 'test_roswtf', 'test_rosgraph', 'test_ros', 'test_roslaunch', 'test_rosmaster', 'test_topic_tools', 'test_rospy', 'test_roscpp_serialization_perf', 'test_rostopic', 'test_rosservice', 'test_crosspackage', 'test_rosbag', 'perf_roscpp', 'test_rostest', 'test_rostime', 'test_roscpp_serialization', 'test_roscpp', 'test_rosparam', 'test_rosmsg', 'test_rosnode', 'rosmaster', 'rosparam', 'rosgraph', 'rosnode', 'rosconsole', 'topic_tools', 'rosservice', 'rosbag', 'rosbagmigration', 'roslaunch', 'rostopic', 'rosmsg', 'rosout', 'rostest', 'cpp_common', 'roswtf', 'xmlrpcpp', 'rostime', 'message_filters', 'roscore_migration_rules', 'roslisp', 'rospy', 'roscpp_traits', 'roscpp', 'roscpp_serialization']
[ rosmake ] Generating Install Script using rosdep then executing. This may take a minute, you will be prompted for permissions. . .
Traceback (most recent call last):
File "/home/bd/ros/ros/bin/rosmake", line 65, in <module>
if rma.main():
File "/home/bd/ros/ros/tools/rosmake/src/rosmake/engine.py", line 855, in main
self.rosdep_install_result = self.install_rosdeps(buildable_packages, options.rosdep_yes)
File "/home/bd/ros/ros/tools/rosmake/src/rosmake/engine.py", line 311, in install_rosdeps
r = rosdep.core.Rosdep(packages, robust=True)
File "/home/bd/ros/ros/tools/rosdep/src/rosdep/core.py", line 343, in __init__
self.osi = roslib.os_detect.OSDetect(os_list)
File "/home/bd/ros/ros/core/roslib/src/roslib/os_detect.py", line 535, in __init__
self.detect_os()
File "/home/bd/ros/ros/core/roslib/src/roslib/os_detect.py", line 554, in detect_os
self._os_version = os_class.get_version()
File "/home/bd/ros/ros/tools/rosdep/src/rosdep/debian.py", line 133, in get_version
return self.version_map[self.mint_detector.get_version()]
KeyError: '12'
Traceback (most recent call last):
File "/home/bd/ros/ros/bin/rosmake", line 65, in <module>
if rma.main():
File "/home/bd/ros/ros/tools/rosmake/src/rosmake/engine.py", line 855, in main
self.rosdep_install_result = self.install_rosdeps(buildable_packages, options.rosdep_yes)
File "/home/bd/ros/ros/tools/rosmake/src/rosmake/engine.py", line 311, in install_rosdeps
r = rosdep.core.Rosdep(packages, robust=True)
File "/home/bd/ros/ros/tools/rosdep/src/rosdep/core.py", line 343, in __init__
self ...