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
Hello, I am trying to import the ur10 urdf as seen in the tutorial, however each time I import the urdf file I get the following error:
" DirectoryNotFoundException: Could not find a part of the path "/home/angel/ur10/package:/ur_description/meshes/ur10/visual/base.dae" "
Is there anything I need to modify to successfully import the urdf?
The text was updated successfully, but these errors were encountered:
Apologies, there are a couple of major errors and critical exclusions in this video. We hope to fix this in the near future. In the meantime:
There is an error in the copying the meshes from docker. It should be: docker cp my_zerosim_vnc_docker:/catkin_ws/src/universal_robot/ur_description/meshes .
The URDF mesh file paths need to be fixed up. Best option is to run sed from the command line on the URDF:
# fix the initial paths
sed -i 's#package://ur_description#.#g' ur10.urdf
# ZeroSim can only load OBJ files so convert DAE extension to OBJ.
# Remember we did a conversion of the DAE files to OBJ in the Docker image
sed -i 's#.dae#.obj#g' ur10.urdf
Now you should be able to import UR10 into ZeroSim.
Hello, I am trying to import the ur10 urdf as seen in the tutorial, however each time I import the urdf file I get the following error:
" DirectoryNotFoundException: Could not find a part of the path "/home/angel/ur10/package:/ur_description/meshes/ur10/visual/base.dae" "
Is there anything I need to modify to successfully import the urdf?
The text was updated successfully, but these errors were encountered: