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
File "/usr/local/bin/rosversion"

this line seems to suggest you have a pip installed version of python-rospkg.

It could be that updated packages have been released, but since your /usr/local version is always taken instead of the regular one, you're still running the pip installed version.

The currently released rosversion file for Kinetic (in /usr/bin) starts with this (after the license block):

from __future__ import print_function

import os
import sys
import traceback

import rospkg
from rospkg.common import PACKAGE_FILE
from rospkg.rospack import ManifestManager

[..]