Remove conflicting nvidia-tensorboard package (#2622)
Browse filesAttempt to resolve tensorboard Docker error in https://github.com/ultralytics/yolov5/issues/2573
- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -7,6 +7,7 @@ RUN apt update && apt install -y zip htop screen libgl1-mesa-glx
|
|
7 |
# Install python dependencies
|
8 |
COPY requirements.txt .
|
9 |
RUN python -m pip install --upgrade pip
|
|
|
10 |
RUN pip install --no-cache -r requirements.txt gsutil notebook
|
11 |
|
12 |
# Create working directory
|
|
|
7 |
# Install python dependencies
|
8 |
COPY requirements.txt .
|
9 |
RUN python -m pip install --upgrade pip
|
10 |
+
RUN pip uninstall -y nvidia-tensorboard nvidia-tensorboard-plugin-dlprof
|
11 |
RUN pip install --no-cache -r requirements.txt gsutil notebook
|
12 |
|
13 |
# Create working directory
|