-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ERROR: No matching distribution found for pkg_resources #1870
Comments
Thanks for your help. This step I can also accomplish in Colab, but when I execute track.py(!poetry run python tracking/track.py --yolo-model yolov8s.pt --reid-model osnet_x0_25_msmt17.pt --source out.avi --save --conf 0.2), the following error is reported: File "/content/boxmot/boxmot/utils/checks.py", line 3, in |
Seeing the same issue with trying to run
|
Have you solved this problem now? |
I can reproduce this when upgrading poetry |
Could you tell me the specific version of poetry? |
I was able to resolve the issue by manually installing setuptools.
Do poetry add setuptools
…On Fri, Mar 28, 2025 at 10:51 AM silvermistlin ***@***.***> wrote:
我可以在升级诗歌时重现这个
Could you tell me the specific version of poetry?
—
Reply to this email directly, view it on GitHub
<#1870 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BLYEPDBJ6C6WRXIRB6Q2DCL2WVOXRAVCNFSM6AAAAABZDYLOTCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRRGU4TMMBRGI>
.
You are receiving this because you commented.Message ID:
***@***.***>
[image: silvermistlin]*silvermistlin* left a comment
(mikel-brostrom/boxmot#1870)
<#1870 (comment)>
我可以在升级诗歌时重现这个
Could you tell me the specific version of poetry?
—
Reply to this email directly, view it on GitHub
<#1870 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BLYEPDBJ6C6WRXIRB6Q2DCL2WVOXRAVCNFSM6AAAAABZDYLOTCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRRGU4TMMBRGI>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Search before asking
Yolo Tracking Component
Tracking
Bug
when I test it on Colab: ModuleNotFoundError: No module named 'pkg_resources'.
So I tried: !pip install poetry and !pip install pkg_resources.
but it shows: ERROR: Could not find a version that satisfies the requirement pkg_resources (from versions: none)
ERROR: No matching distribution found for pkg_resources.
Could you give me some suggestions?
Environment
Installing the current project: boxmot (12.0.1)Installing the current project: boxmot (12.0.1)
Setup complete. Using torch 2.6.0+cu124 (CPU)
Minimal Reproducible Example
!git clone https://github.com/mikel-brostrom/boxmot.git
%cd /content/boxmot
!python -m pip install --upgrade pip
!pip install poetry
!pip install pkg_resources -i https://pypi.tuna.tsinghua.edu.cn/simple
!poetry install --with yolo # installed boxmot + yolo dependencies
import torch
from IPython.display import Image, clear_output # to display images
print(f"Setup complete. Using torch {torch.version} ({torch.cuda.get_device_properties(0).name if torch.cuda.is_available() else 'CPU'})")
The text was updated successfully, but these errors were encountered: