2021年9月3日 星期五

[Spyter]調整介面顏色

 

spyder界面顏色的方法:Tools->Preferences->Syntaxcoloring->SpyderDark 黑色

[Spyter] 調整視窗回預設layout

 


View ->Windowlayout->SpyterDefault Layout

[tensolflow] 報錯ImportError: DLL load failed: 找不到指定的模块。

 

成功的話應該出現

結果發現是版本問題 

直接使用安裝指令 pip install tensorflow 會安裝最新版 2.6.0
開啟spyder  import tensorflow 會報出ImportError: DLL load failed: 找不到指定的模块。
這時只要 pip uninstall tensorflow 解除安裝
重新安裝 pip install tensorflow==2.0.0  這版本就可以解決了
然後 pip install keras==2.3.1 要安裝這個版本。