bonnetal icon indicating copy to clipboard operation
bonnetal copied to clipboard

Error building the base docker due to unspecified depenency versions

Open hamzaMahdi opened this issue 2 years ago • 0 comments

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!

hamzaMahdi avatar Mar 24 '22 19:03 hamzaMahdi