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
- matplotlib模組詳解
- 解決Python找不到ssl模組問題 No module named _sslPython
- linux定時任務python找不到模組問題解決LinuxPython
- Python中模組的使用Python
- 關於python3.7中 scipy模組輸出函式出錯問題的解決Python函式
- Go 模組存在的意義與解決的問題Go
- matplotlib中文報錯問題及解決方案
- Python 中argparse模組的使用Python
- 解決 requests 庫中的位元組物件問題物件
- Python中yaml模組的使用教程PythonYAML
- 教你如何解決Python模組導包沒有找到的問題Python
- 如何重置Mac的藍芽模組以解決連線問題Mac藍芽模組
- Hue的Impala模組沒有釋放連線的問題解決
- python中的itertools模組簡單使用Python
- Python中Numpy及Matplotlib使用Python
- 利用 Transform 解決模組化開發服務呼叫問題ORM
- SAP質量管理模組常見問題及解決方案
- Python3 pickle模組的使用詳解Python
- 資料分析---matplotlib模組
- Python 3.6.10 中的 requests 庫 TLS 1.2 強制使用問題及解決方案PythonTLS
- Python安裝cx_Oracle模組遇到的問題PythonOracle
- python 使用 最大生成樹 解決 營救問題Python
- Python logging模組的使用Python
- python中的chardet模組Python
- Python中的abc模組Python
- Python找不到專案模組解決方法Python
- 在Python 3.2中使用OAuth匯入失敗的問題與解決方案PythonOAuth
- 解決matplotlib使用plt.pause動態繪圖視窗無法關閉問題繪圖
- python中的複製copy模組怎麼使用?Python
- python中re模組的使用(正規表示式)Python
- goland中npm無法使用的問題及解決方法GoLandNPM
- python模組詳解Python
- Python模組 adorner 的使用示例Python
- JQuery中ajax的使用與快取問題的解決方法jQuery快取
- Python的Selenium一些問題解決Python
- 解決無法使用VI的問題
- Python中paramiko 模組的用法Python
- Python中operator 模組的用法Python