You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, when running roslaunch relaxed_ik_ros1 rviz_viewer.launch I get the TypeError as seen below, killing the rviz window.
(BTW I'm using python 2.7.17)
Edit: Also I'm using ros melodic on ubuntu 18.04 (via wslg)
The text was updated successfully, but these errors were encountered:
Hey, when running roslaunch relaxed_ik_ros1 rviz_viewer.launch I get the TypeError as seen below, killing the rviz window. (BTW I'm using python 2.7.17)
I have the same problem with you, I think that the vision of python is the root of the problem, but if I change the vision to python3, then the pykdl will error.
So this problem seems to be caused by the line ~311 exec(joint_state_define) which changes joint_state_define from type str to type function. This then throws the error of trying to combine a function and str in line 379 exec(joint_state_define + "\njs = joint_state_define(x)", globals(), loc) because joint_state_define is now of type function.
My quick fix is to make a duplicate variable of joint_state_define (I used joint_state_define2) before line 311 and used the duplicate variable ( joint_state_define2) for line 379.
Hey, when running
roslaunch relaxed_ik_ros1 rviz_viewer.launch
I get the TypeError as seen below, killing the rviz window.(BTW I'm using python 2.7.17)
Edit: Also I'm using ros melodic on ubuntu 18.04 (via wslg)
The text was updated successfully, but these errors were encountered: