本文介绍了导入错误:libGL.so.1:无法打开共享对象文件:没有这样的文件或目录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试运行 cv2,当我尝试导入它时,我得到 p>
ImportError: libGL.so.1: cannot open shared object file: No such file or directory
建议的在线解决方案是安装
apt install libgl1-mesa-glx
但这已经安装并且是最新版本.任何帮助都会非常有帮助.提前致谢.
解决方案
RUN apt-get update ##[edited]运行 apt-get install ffmpeg libsm6 libxext6 -y
将这些行添加到您的 Dockerfile
i am trying to run cv2, and when i try to import it i get
ImportError: libGL.so.1: cannot open shared object file: No such file or directory
the suggested solution online is installing
apt install libgl1-mesa-glx
but this is already installed and the latest version.Any help would be really helpful.Thanks in advance.
解决方案
RUN apt-get update ##[edited]
RUN apt-get install ffmpeg libsm6 libxext6 -y
Add these lines to your Dockerfile
这篇关于导入错误:libGL.so.1:无法打开共享对象文件:没有这样的文件或目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!