深度学习安装包问题合集(实时更新版)

一.Opencv-python的安装问题

流程:
# 也可使用清华镜像pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-python
pip install opencv-python
安装完成后,出现报错:
ImportError: libgthread-2.0.so.0: cannot open shared object file: No such file or directory
解决方案参考: https://blog.csdn.net/weixin_61057398/article/details/128047079
1.Ubuntu系统
apt-get update
apt-get install libglib2.0-dev
2.CenOS系统
yum update
yum install mesa-libGL.x86_64

二. 后续接着更新

你可能感兴趣的:(深度学习环境安装系列,深度学习,python,opencv)