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 building the base docker, it fails due to this error: Depends: libnvinfer-dev (= 5.1.5-1+cuda10.1) but 8.2.3-1+cuda11.4 is to be installed
The solution was to replace the line: apt install tensorrt python3-libnvinfer-dev -yqq
with apt install tensorrt python3-libnvinfer=5.1.5-1+cuda10.1 python3-libnvinfer-dev=5.1.5-1+cuda10.1 -yqq
in the DockerFile of the base image!
The text was updated successfully, but these errors were encountered:
hamzaMahdi
added a commit
to hamzaMahdi/bonnetal
that referenced
this issue
Mar 24, 2022
When building the base docker, it fails due to this error:
Depends: libnvinfer-dev (= 5.1.5-1+cuda10.1) but 8.2.3-1+cuda11.4 is to be installed
The solution was to replace the line:
apt install tensorrt python3-libnvinfer-dev -yqq
with
apt install tensorrt python3-libnvinfer=5.1.5-1+cuda10.1 python3-libnvinfer-dev=5.1.5-1+cuda10.1 -yqq
in the DockerFile of the base image!
The text was updated successfully, but these errors were encountered: