ros-semantic-segmentation
ros-semantic-segmentation copied to clipboard
ModuleNotFoundError: No module named 'models'
Hello. I'm a student who study semantic segmentation using ros. I have a question while using your github.
I meet this error. Can you help me?
?
+1
The issue is related to the Python path.
One easy solution to handle this in your case would be
Adding the directory to the Python path using
import sys sys.path.append("PATH_TO_YOUR_PACKAGE")
even though it is not recommended as your would not be able to be run in different environments.