macOSX中使用python matplotlib模組的問題解決
在mac OSX 上,使用python matplotlib庫時,出現問題:
>>> import numpy as np
>>> import matplotlib.pyplot as plt
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/david/anaconda2/envs/tensorflow/lib/python3.6/site-packages/matplotlib/pyplot.py", line 113, in <module>
_backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
File "/Users/david/anaconda2/envs/tensorflow/lib/python3.6/site-packages/matplotlib/backends/__init__.py", line 60, in pylab_setup
[backend_name], 0)
File "/Users/david/anaconda2/envs/tensorflow/lib/python3.6/site-packages/matplotlib/backends/backend_macosx.py", line 19, in <module>
from matplotlib.backends import _macosx
RuntimeError: Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework. See the Python documentation for more information on installing Python as a framework on Mac OS X. Please either reinstall Python as a framework, or try one of the other backends. If you are using (Ana)Conda please install python.app and replace the use of 'python' with 'pythonw'. See 'Working with Matplotlib on OSX' in the Matplotlib FAQ for more information.
網路上介紹了2中方法, 測試都可以。
方法一:
新增如下兩行 程式碼解決:
>>> import matplotlib
>>> matplotlib.use('TkAgg')
##在import matplotlib下的模組,如pyplot等之前新增上面2句
>>> import matplotlib.pyplot as plt
方法二:
在每個python指令碼檔案中都這麼寫,有些彆扭。
新增一下matplotlib的配置:
echo "backend: TkAgg" >> ~/.matplotlib/matplotlibrc
相關文章
- VSCode中解決python模組匯入問題VSCodePython
- CKEditor使用中遇到的問題解決
- matplotlib中文報錯問題及解決方案
- 解決Python找不到ssl模組問題 No module named _sslPython
- matplotlib模組詳解
- 關於python3.7中 scipy模組輸出函式出錯問題的解決Python函式
- sybase中cursor的使用中死迴圈問題解決
- Python中Numpy及Matplotlib使用Python
- linux定時任務python找不到模組問題解決LinuxPython
- Go 模組存在的意義與解決的問題Go
- Python中模組的使用Python
- Windows系統中安裝Python模組pip numpy matplotlibWindowsPython
- python使用matplotlib繪圖詳解Python繪圖
- python 使用 最大生成樹 解決 營救問題Python
- goland中npm無法使用的問題及解決方法GoLandNPM
- Amigo學習(一)解決使用中遇到的問題Go
- 解決:angular js模板中無法使用ueditor的問題AngularJS
- Python 3.6.10 中的 requests 庫 TLS 1.2 強制使用問題及解決方案PythonTLS
- 在Python 3.2中使用OAuth匯入失敗的問題與解決方案PythonOAuth
- JQuery中ajax的使用與快取問題的解決方法jQuery快取
- 解決matplotlib使用plt.pause動態繪圖視窗無法關閉問題繪圖
- Python 中argparse模組的使用Python
- 解決「問題」,不要解決問題
- 解決無法使用VI的問題
- 解決在使用Amoeba遇到的問題
- 教你如何解決Python模組導包沒有找到的問題Python
- 解決python MySQLdb import Error問題PythonMySqlImportError
- python待解決問題筆記Python筆記
- 如何重置Mac的藍芽模組以解決連線問題Mac藍芽模組
- 安裝DBD:MySql模組遇到的問題及解決辦法MySql
- 解決oracle中not like效率問題Oracle
- Hue的Impala模組沒有釋放連線的問題解決
- Python中yaml模組的使用教程PythonYAML
- 使用Nginx來解決跨域的問題Nginx跨域
- python pandas做資料分析檢視分析matplotlib,seaborn模組使用Python
- 幽默:程式設計中困難的不是解決問題,而是確定要解決的問題 - Paul程式設計
- python requests 怎麼解決 url 中../ 自動跳目錄的問題?Python
- Python中的greelet模組的執行緒安全問題 ( by quqi99 )Python執行緒