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
python predict.py model=yolov8x-seg.pt source="test3.mp4"
Traceback (most recent call last):
File "/Users/ankushsingal/Desktop/yolov8/ObjectTrackingsYOLOv8/YOLOv8-DeepSORT-Object-Tracking/ultralytics/yolo/v8/detect/predict.py", line 13, in <module>
from ultralytics.yolo.engine.predictor import BasePredictor
ModuleNotFoundError: No module named 'ultralytics.yolo'
The text was updated successfully, but these errors were encountered:
You can try to add the absolute path in the beginning of the file 'predict.py' like this:
ultralytics_path = "D:\YOLOv8-DeepSORT-Object-Tracking"
sys.path.append(ultralytics_path)
The text was updated successfully, but these errors were encountered: