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

rqt_error_messages [closed]

asked 2021-11-22 10:19:51 -0500

ENTMar gravatar image

Hello I have a problem to call the rqt. I followed the guide from e-Manual (Link:https://emanual.robotis.com/docs...) and would like to see the topic list from rqt. After I typed

rqt

it showed following error messages:

" Traceback (most recent call last): File "/opt/ros/melodic/bin/rqt", line 13, in <module> sys.exit(main.main())

File "/opt/ros/melodic/lib/python2.7/dist-packages/rqt_gui/main.py", line 65, in main hash(os.environ['ROS_PACKAGE_PATH'])))

File "/opt/ros/melodic/lib/python2.7/dist-packages/qt_gui/main.py", line 600, in main plugin_manager.discover()

File "/opt/ros/melodic/lib/python2.7/dist-packages/qt_gui/plugin_manager.py", line 125, in discover self._plugin_menu.add_plugin(plugin_descriptor)

File "/opt/ros/melodic/lib/python2.7/dist-packages/qt_gui/plugin_menu.py", line 82, in add_plugin self._enrich_action(action, action_attributes, base_path)

File "/opt/ros/melodic/lib/python2.7/dist-packages/qt_gui/plugin_menu.py", line 133, in _enrich_action action_attributes['icon'], action_attributes.get('icontype', None), base_path)

File "/opt/ros/melodic/lib/python2.7/dist-packages/qt_gui/icon_loader.py", line 46, in get_icon raise UserWarning('icon "%s" not found' % str(path))

UserWarning: icon "/opt/ros/melodic/share/rqt_virtual_joy/resource/input-gaming.png" not found"

Can anybody help me to solve this problem?

edit retag flag offensive reopen merge delete

Closed for the following reason the question is answered, right answer was accepted by ENTMar
close date 2022-02-19 08:28:38.076721

1 Answer

Sort by ยป oldest newest most voted
2

answered 2021-11-22 13:45:35 -0500

osilva gravatar image

To fix this error, need to install the missing package rqt_virtual_joystick:

https://github.com/aquahika/rqt_virtu...

Suggested installation:

mkdir -p joystick_ws/src
cd joystick_ws/src
git clone https://github.com/aquahika/rqt_virtual_joystick
cd ..
catkin_make
echo 'source ~/joystick_ws/devel/setup.bash' >> ~/.bashrc
source ~/.bashrc

To test: rosrun rqt_virtual_joy rqt_virtual_joy Notice that the package is rqt_virtual_joy

edit flag offensive delete link more

Comments

Thank you very much :) It works!

ENTMar gravatar image ENTMar  ( 2021-11-23 08:13:06 -0500 )edit

Glad it works. If you could accept answer by clicking on check mark so the question can be considered closed.

osilva gravatar image osilva  ( 2021-11-23 10:05:45 -0500 )edit

Question Tools

Stats

Asked: 2021-11-22 10:19:51 -0500

Seen: 573 times

Last updated: Nov 22 '21