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.如果上方出現(xiàn)更新較慢,可以添加鏡像源,加快速度:
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打開出現(xiàn)黑框隨后閃退
在cmd中輸入Anaconda-Navigator發(fā)現(xiàn)報錯
為
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打開閃退內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
Python使用progressbar模塊實現(xiàn)的顯示進度條功能
這篇文章主要介紹了Python使用progressbar模塊實現(xiàn)的顯示進度條功能,簡單介紹了progressbar模塊的安裝,并結合實例形式分析了Python使用progressbar模塊顯示進度條的相關操作技巧,需要的朋友可以參考下2018-05-05
一篇文章告訴你如何用Python控制Excel實現(xiàn)自動化辦公
這篇文章主要介紹了教你怎么用Python處理excel實現(xiàn)自動化辦公,文中有非常詳細的代碼示例,對正在學習python的小伙伴們有非常好的幫助,需要的朋友可以參考下2021-08-08
淺析Python中的getattr(),setattr(),delattr(),hasattr()
這篇文章主要介紹了Python中的getattr(),setattr(),delattr(),hasattr() 的相關資料,非常不錯具有參考借鑒價值,需要的朋友可以參考下2016-06-06

