日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

macOSX中使用python matplotlib模块的问题解决

發布時間:2023/12/15 python 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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

總結

以上是生活随笔為你收集整理的macOSX中使用python matplotlib模块的问题解决的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。