ByteTrack icon indicating copy to clipboard operation
ByteTrack copied to clipboard

ModuleNotFoundError: No module named 'yolox.tracker'

Open talkw-liu opened this issue 2 years ago • 2 comments

I get the following error: File "/home/path/to/project/ByteTrack/yolox/tracker/byte_tracker.py", line 10, in from yolox.tracker import matching ModuleNotFoundError: No module named 'yolox.tracker'

my python version: v3.8

talkw-liu avatar Aug 17 '23 07:08 talkw-liu

I also got this error. I use python 3.10.0.

Minokiti11 avatar Jan 11 '24 05:01 Minokiti11

You can temporary fix by add these 2 lines on top of files:

import sys
sys.path.append('.')

NguyenVanThanhHust avatar Jan 31 '24 06:01 NguyenVanThanhHust