anaconda打开闪退的解决过程
作者:Wsyoneself
这篇文章主要给大家介绍了关于anaconda打开闪退的解决过程,文中通过实例代码介绍的非常详细,对大家学习或者使用anaconda具有一定的参考学习价值,需要的朋友可以参考下
anaconda打开闪退:(过程中可能需要输入y确认)
1.管理员权限运行anaconda prompt
2.升级conda:
conda update anaconda-navigator
3.重置navigator:
anaconda-navigator --reset
4.升级客户端:
conda update anaconda-client
5.升级安装依赖包:
conda update -f anaconda-client
6.再尝试打开anaconda
7.如果上方出现更新较慢,可以添加镜像源,加快速度:
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/ conda config --set show_channel_urls yes
8.查看是否添加上源了:
conda config --show(看channels属性下是否有上方添加的两个镜像了)
9.如果镜像失效,删除镜像:
conda config --remove channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
补充:anaconda打开出现黑框随后闪退
在cmd中输入Anaconda-Navigator发现报错
为
qtpy.PythonQtError: No Qt bindings could be found
随后寻找到如下安装方案:
1.保证你电脑上有原装的python,就是从官网下的那个原版python
Run “pip install pyqt5-tools” from cmd.
2.在命令行窗口(cmd)输入pip install pyqt5-tools
You should have a message on screen post-installation - “Successfully installed click-7.0 pyqt5-5.13.0 pyqt5-tools-5.13.0.1.5 python-dotenv-0.10.3” 3.如果安装成功,会提示"Successfully installed click-7.0 pyqt5-5.13.0 pyqt5-tools-5.13.0.1.5 python-dotenv-0.10.3"的字样,反正只要没报错就行。
总结
到此这篇关于anaconda打开闪退解决的文章就介绍到这了,更多相关anaconda打开闪退内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!