From 1e908e4374699587f80b602e662a26ce07bde946 Mon Sep 17 00:00:00 2001 From: Lakshantha Dissanayake Date: Fri, 21 Feb 2025 00:42:59 -0800 Subject: [PATCH] Fix TensorRT export issue by removing redundant package (#19343) --- docker/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 2cfbfd35..d2244109 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -41,8 +41,7 @@ ADD https://github.com/ultralytics/assets/releases/download/v8.3.0/yolo11n.pt . # Install pip packages RUN pip install uv -# Note -cu12 must be used with tensorrt -RUN uv pip install --system -e ".[export]" tensorrt-cu12 "albumentations>=1.4.6" comet pycocotools +RUN uv pip install --system -e ".[export]" "albumentations>=1.4.6" comet pycocotools # Run exports to AutoInstall packages # Edge TPU export fails the first time so is run twice here