ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

iandanforth's profile - activity

2015-01-01 15:59:01 -0500 answered a question rosmak error - ivcon: Command not found

I was able to solve a similar error using this method

mkdir -p temp_ws/src
cd temp_ws/src
catkin_init_workspace
wstool init .

create a file temp.rosinstall with these contents

- git: {local-name: ivcon, uri: 'https://github.com/ros/ivcon.git', version: master}
- git: {local-name: convex_decomposition, uri: 'https://github.com/ros/convex_decomposition.git', version: master}

then

wstool merge temp.rosinstall
wstool update
cd ..
catkin_make
source devel/setup.bash

Now you'll have ivcon and complex_decomposition commands available, return to the package you were trying to build

cd <path to katana ws>
catkin_make

Some of these steps may be redundant / not the most efficient but they worked for me.

2013-09-21 13:19:15 -0500 received badge  Famous Question (source)
2013-09-18 07:33:53 -0500 received badge  Notable Question (source)
2013-09-18 00:04:28 -0500 received badge  Popular Question (source)
2013-09-17 19:49:37 -0500 received badge  Student (source)
2013-09-17 19:47:51 -0500 asked a question OSX Install problem - rqt_top: No definition of [python-psutil] for OS [osx]

Hello! I'm trying to walk through the latest OSX install instructions. I have gotten to this step:

rosdep install --from-paths src --ignore-src --rosdistro hydro -y

When I encountered this error:

ERROR: the following packages/stacks could not have their rosdep keys resolved to system dependencies: rqt_top: No definition of [python-psutil] for OS [osx]

I'm on 10.8.3 and this is the first time I've tried to install ROS on this laptop. (If that matters)

Suggestions for debugging ideas would be appreciated!