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

ambareesh's profile - activity

2021-07-23 01:07:07 -0500 received badge  Famous Question (source)
2021-07-23 01:07:07 -0500 received badge  Notable Question (source)
2020-11-25 17:11:59 -0500 received badge  Favorite Question (source)
2020-09-05 22:05:22 -0500 received badge  Student (source)
2020-09-05 22:04:25 -0500 received badge  Famous Question (source)
2019-12-16 08:24:06 -0500 received badge  Notable Question (source)
2019-12-16 08:24:06 -0500 received badge  Popular Question (source)
2019-11-29 04:16:25 -0500 received badge  Famous Question (source)
2019-10-21 17:45:58 -0500 received badge  Notable Question (source)
2019-10-02 15:34:45 -0500 received badge  Popular Question (source)
2019-08-21 19:00:18 -0500 marked best answer How can you install a package using catkin build?

I'm trying to use a script from the package bag_tools (http://wiki.ros.org/bag_tools?distro=...)

First instruction is to :

catkin_make install --pkg bag_tools

However I had made my workspace using catkin build. (I'm not aware of the details of the difference between catkin_make and catkin build). How do I install bag_tools using catkin build?

TL;DR: What's the catkin build equivalent of "catkin_make install --pkg bag_tools"

2019-08-21 14:43:36 -0500 commented answer How to use bag_tools

@Felix How do you install from source , exactly? Is it an addition/variation of this command-. rosdep install --from-pat

2019-08-21 14:24:26 -0500 asked a question How can you install a package using catkin build?

How can you install a package using catkin build? I'm trying to use a script from the package bag_tools (http://wiki.ros

2019-08-21 12:15:33 -0500 marked best answer rosrun/roscd not recognising correct folder/project path

I made an executable python script for the nodes, and saved it at the location: /home/florian/catkin_build_ws/src/dlc_project/scripts

  1. I have made it executable with chmod +x
  2. I have the shebang line on top

But when I type:

roscd dlc_project

I find myself at : /home/florian/catkin_build_ws/install/share/dlc_project, instead of the dlc_project I need (inside ../src/..) Why does this happen? Any way to change this back to recognise the correct dlc_project folder.

Other details: I use catkin build (instead of catkin_make), Using Python3 + ROS Melodic + Ubuntu 18.04

Thank you!

P.S:

echo $ROS_PACKAGE_PATH /home/florian/catkin_build_ws/install/share:/home/florian/catkin_ws/src:/opt/ros/melodic/share

The reason I'm sourcing from /install is because I want to use ROS1+Python3+Cv_bridge and I am following the accepted answer here : SO answer

The line: source install/setup.bash --extend, is probably causing this. But I need to do that so that the Cv bridge built with Python3 is added to the environment. After this, how do I ensure that my project is recognized by ROS as a ROS package?

2019-08-21 12:15:33 -0500 received badge  Scholar (source)
2019-08-19 12:49:21 -0500 commented answer rosrun/roscd not recognising correct folder/project path

P.S: echo $ROS_PACKAGE_PATH /home/florian/catkin_build_ws/install/share:/home/florian/catkin_ws/src:/opt/ros/melodic/sh

2019-08-17 21:23:03 -0500 received badge  Popular Question (source)
2019-08-16 21:35:35 -0500 edited question rosrun/roscd not recognising correct folder/project path

rosrun/roscd not recognising correct folder/project path I made an executable python script for the nodes, and saved it

2019-08-16 21:35:35 -0500 received badge  Editor (source)
2019-08-16 21:30:04 -0500 edited question rosrun/roscd not recognising correct folder/project path

rosrun/roscd not recognising correct folder/project path I made an executable python script for the nodes, and saved it

2019-08-16 15:00:10 -0500 asked a question rosrun/roscd not recognising correct folder/project path

rosrun/roscd not recognising correct folder/project path I made an executable python script for the nodes, and saved it

2019-08-15 18:40:30 -0500 received badge  Supporter (source)
2019-08-15 18:02:40 -0500 asked a question How to solve Type Error while converting images using cv_bridge?

How to solve Type Error while converting images using cv_bridge? Implementing a variant of the example code from : http: