[Documentation] [TitleIndex] [WordIndex

No troubleshooting tips have been added for this package/stack.

Error: OSError: [Errno 17] File exists

Example:

Solution:

This was a known issue with ROS 0.10. It was fixed in ROS 0.11. If you do not wish to upgrade, you can change line 76 of ros/tools/roscreate/src/roscreate/roscreatepkg.py

from:

py_path = os.path.join(p, 'src')

to:

py_path = os.path.join(p, 'src', package)


2024-03-23 12:55