前言
README.md文件里写的非常详细,下面补充几个遇到的问题及解决方案。
安装requirements.txt文件所指定的包
1)关于cmake
总的来说,问题不大,不用考虑。参考
2)关于dlib
报错问题:ERROR: Failed building wheel for dlib
解决方案:更换了dlib库的安装方法
https://blog.csdn.net/qq_41185868/article/details/79678783
提供了三种安装方法,每个都试了一遍
3)关于PyQt5
明明显示Requirement already satisfied
,但还是No module named 'qdarkstyle'
解决方案:卸载重装
https://blog.csdn.net/yinxue541/article/details/102716326
运行smart_classroom_app.py
RuntimeError: Could not run 'aten::empty_strided' with arguments from the 'CUDA' backend.
说明没有安装gpu版本的pytorch,可以利用以下代码测试:
import torch #这里不应报错
print(torch.__version__) #1.8.1+cu111
print(torch.cuda.is_available()) #True
print(torch.cuda_version) #11.1
教程:Pytorch1.8.1版本离线安装教程
whl文件下载网址:https://download.pytorch.org/whl/torch_stable.html