您现在的位置是:网站首页> 编程资料编程资料
anaconda打开闪退的解决过程_python_
2023-05-25
1413人已围观
简介 anaconda打开闪退的解决过程_python_
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打开闪退内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
相关内容
- Python操作csv文件之csv.writer()和csv.DictWriter()方法的基本使用_python_
- python sklearn与pandas实现缺失值数据预处理流程详解_python_
- Python 读取 .gz 文件全过程_python_
- Python数据分析之matplotlib绘图详解_python_
- Python加载文件内容的两种实现方式_python_
- python转换wrf输出的数据为网页可视化json格式_python_
- Python利用redis-py实现集合与有序集合的常用指令操作_python_
- python对站点数据做EOF且做插值绘制填色图_python_
- Opencv图像添加椒盐噪声、高斯滤波去除噪声原理以及手写Python代码实现方法_python_
- Python正则表达式re.search()用法详解_python_
