We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9601828 + 95d7729 commit 65d090cCopy full SHA for 65d090c
Dockerfile.tmpl
@@ -642,6 +642,9 @@ RUN jupyter-nbextension disable nb_conda --py --sys-prefix && \
642
# Force only one libcusolver
643
RUN rm /opt/conda/bin/../lib/libcusolver.so.11 && ln -s /usr/local/cuda/lib64/libcusolver.so.11 /opt/conda/bin/../lib/libcusolver.so.11
644
645
+# b/270147159 conda ships with a version of libtinfo which is missing version info causing warnings, replace it with a good version.
646
+RUN rm /opt/conda/lib/libtinfo.so.6 && ln -s /usr/lib/x86_64-linux-gnu/libtinfo.so.6 /opt/conda/lib/libtinfo.so.6
647
+
648
# Set backend for matplotlib
649
ENV MPLBACKEND "agg"
650
0 commit comments