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

Is there not a urdf utitlity package(liburdfom-dev or liburdfom-tools) in noetic?

asked 2021-09-14 19:07:03 -0500

abhijelly gravatar image

I'm trying to install urdf utility package to check_urdf command for my .urdf files. And when I try to install the utility package using the following commands

sudo apt-get install liburdfom-tools

or

sudo apt-get install liburdfom-dev

I get the following result

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package liburdfom-tools/dev #depending on the command

Am I doing something wrong or does the urdf utility package not exist in noetic?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2021-09-15 07:08:50 -0500

osilva gravatar image

This package needs to be built from source. Refer to this tutorial:

http://wiki.ros.org/ROSberryPi/Instal...

For example,

$ cd ~/ros_catkin_ws/external_src

$ sudo apt-get install libboost-test-dev libtinyxml-dev

$ git clone https://github.com/ros/urdfdom.git

$ cd urdfdom

$ cmake .

$ sudo checkinstall make install

Hope this helps you

edit flag offensive delete link more

Comments

Hello! This helped, thank you! I am also trying to check my urdf using the package "urdfdom_py" but the terminal says this package cannot be found. I was wondering if you know anything about this package, if not I appreciate your reply!

PS command I am trying to run

This provides a JSON version of the robot, but crashes when the description has erros. Review the errors to fix the URDF file.

rosrun urdfdom_py display urdf robot_des.urdf
abhijelly gravatar image abhijelly  ( 2021-09-16 17:20:25 -0500 )edit

Vote on this issue please to close the question. Remember is 1 Question 1 Answer. For your next question, also remember to search for prior answers. Glad it was able to help.

osilva gravatar image osilva  ( 2021-09-16 17:32:16 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2021-09-14 19:07:03 -0500

Seen: 78 times

Last updated: Sep 15 '21