From e6b42c92cc8d8370626a1e41960e7f429e1cddad Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sat, 27 Mar 2021 18:07:03 +0100 Subject: [PATCH] Remove conflicting nvidia-tensorboard package Attempt to resolve tensorboard Docker error in https://github.com/ultralytics/yolov5/issues/2573 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index e1b40c2d15c6..a3d870cafba3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ RUN apt update && apt install -y zip htop screen libgl1-mesa-glx # Install python dependencies COPY requirements.txt . RUN python -m pip install --upgrade pip +RUN pip uninstall -y nvidia-tensorboard nvidia-tensorboard-plugin-dlprof RUN pip install --no-cache -r requirements.txt gsutil notebook # Create working directory