You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running make docker-build, the following error occurs.
(1) pip no more supports Python 3.6
It looks get-pip.py is updated on 03-Feb-2022 09:45.
ERROR: This script does not work on Python 3.6 The minimum supported Python version is 3.7. Please use https://bootstrap.pypa.io/pip/3.6/get-pip.py instead.
The command '/bin/bash -cu curl -O https://bootstrap.pypa.io/get-pip.py && python get-pip.py && rm get-pip.py' returned a non-zero code: 1
Makefile:65: recipe for target 'docker-build' failed
make: *** [docker-build] Error 1
I fixed this by replacing in docker/Dockerfile line 78, which is RUN curl -O https://bootstrap.pypa.io/get-pip.py && \
with the following: RUN curl -O https://bootstrap.pypa.io/pip/${PYTHON_VERSION}/get-pip.py && \
When running
make docker-build
, the following error occurs.(1) pip no more supports Python 3.6
It looks get-pip.py is updated on 03-Feb-2022 09:45.
(2) NVIDIA apex build failure
I got
ATen/cuda/DeviceUtils.cuh: No such file or directory
.It looks build Apex latest version failed with pytorch 1.4.0 due to missing ATen/cuda/DeviceUtils.cuh
The text was updated successfully, but these errors were encountered: