最开始发现打不开spyder,查询很多资料,包括使用pip check查看缺啥等,在安装过程中不断出问题,并且还都查不到类似问题,问题越找越多,又加上找不到新出来问题的解决方法。
感觉思路不对就又回到最初的问题,打不开spyder,这次发现Aanaconda Navigator也无反应,查找方法有更新conda 、更新 anaconda、以及更新 anaconda-navigator等等,在anaconda-navigator --reset时其中提到from PyQt5.QtGui import *
ImportError: DLL load failed while importing QtGui: 找不到指定的程序。
针对这个问题又是一通查资料。最后直到发现了这篇:
https://blog.csdn.net/qq_42868008/article/details/82962293?depth_1.utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task
里边说到可能就是图形界面出了问题,这次试试重装“PyQt5”,使用下面两句:
- pip uninstall PyQt5
- pip install PyQt5
解决了。。。。。