glenn-jocher commited on
Commit
3551b07
·
unverified ·
1 Parent(s): c76c607

Docker pyYAML>=5.3.1 fix (#2031)

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. requirements.txt +1 -1
Dockerfile CHANGED
@@ -5,7 +5,7 @@ FROM nvcr.io/nvidia/pytorch:20.12-py3
5
  RUN apt update && apt install -y screen libgl1-mesa-glx
6
 
7
  # Install python dependencies
8
- RUN pip install --upgrade pip
9
  COPY requirements.txt .
10
  RUN pip install -r requirements.txt gsutil
11
 
 
5
  RUN apt update && apt install -y screen libgl1-mesa-glx
6
 
7
  # Install python dependencies
8
+ RUN python -m pip install --upgrade pip
9
  COPY requirements.txt .
10
  RUN pip install -r requirements.txt gsutil
11
 
requirements.txt CHANGED
@@ -6,7 +6,7 @@ matplotlib>=3.2.2
6
  numpy>=1.18.5
7
  opencv-python>=4.1.2
8
  Pillow
9
- PyYAML==5.4.1
10
  scipy>=1.4.1
11
  tensorboard>=2.2
12
  torch>=1.7.0
 
6
  numpy>=1.18.5
7
  opencv-python>=4.1.2
8
  Pillow
9
+ PyYAML>=5.3.1
10
  scipy>=1.4.1
11
  tensorboard>=2.2
12
  torch>=1.7.0