MuhammadMoinFaisal / YOLOv8-DeepSORT-Object-Tracking

YOLOv8 Object Tracking using PyTorch, OpenCV and DeepSORT
666 stars 197 forks source link

No ultralytics.yolo module #41

Closed ivanatus closed 8 months ago

ivanatus commented 8 months ago

Traceback of the error: C:\Users\Ivana\YOLOv8-DeepSORT-Object-Tracking\ultralytics\yolo\v8\detect>python predict.py model=yolov8l.pt source="test3.mp4" show=True Traceback (most recent call last): File "C:\Users\Ivana\YOLOv8-DeepSORT-Object-Tracking\ultralytics\yolo\v8\detect\predict.py", line 13, in from ultralytics.yolo.engine.predictor import BasePredictor ModuleNotFoundError: No module named 'ultralytics.yolo'

I already installed ultralytics previously (pip show ultralytics shows ultralytics information) and I followed instructions step by step for setting up. I am trying to run this in Anaconda Prompt on Windows 10.

ohj666 commented 8 months ago

yes , this error i have same.How to solve

hxxx151 commented 8 months ago

yes, I also have this problem. What should I do?

shiyou99 commented 8 months ago

It's the ultralytics version error. Try "pip install ultralytics==8.0.3"

ivanatus commented 8 months ago

It's the ultralytics version error. Try "pip install ultralytics==8.0.3"

This solve the problem, thank you.