0

系统和软件版本:

  • OSX 10.7.4
  • 用于 Python 2.7 和 OSX 10.6 的 matplotlib 1.1.1,通过 .mpkg 安装。
  • Python 2.7.3,通过 .mpkg 安装。

    导入 matplotlib.pylabTraceback(最近一次调用最后):文件“”,第 1 行,在文件“/Library/Python/2.7/site-packages/matplotlib-1.2.x-py2.7.egg/matplotlib/pylab.py”中,第 265 行,从 matplotlib.pyplot 导入 * 文件“/Library/Python/2.7/site-packages/matplotlib-1.2.x-py2.7.egg/matplotlib/pyplot.py”,第 97 行,在 new_figure_manager,draw_if_interactive , _show = pylab_setup() 文件“ /Library/Python/2.7/site-packages/matplotlib-1.2.x-py2.7.egg/matplotlib/backends/init.py”,第 25 行,在 pylab_setup globals(),locals(),[backend_name]) 文件“/Library/Python/2.7/site-packages/matplotlib-1.2.x-py2.7.egg/matplotlib/backends/ backend_macosx.py”,第 21 行,从 matplotlib.backends import _macosx ImportError: dlopen(/Library/Python/2.7/site-packages/matplotlib-1.2.x-py2.7.egg/matplotlib/backends/_macosx.so, 2):库未加载:/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 引用自:/Library/Python/2.7/site-packages/matplotlib-1.2.x-py2.7.egg/matplotlib /backends/_macosx.so 原因:找不到图像

4

4 回答 4

0

另见:

http://www.zqna.net/qna/knuzvt-i-am-getting-this-error-on-using-matplotlib.html

我的解决方案:

我有 OS X 10.7.5,运行 python 2.7.1,numpy-1.8.0.dev_4600b2f_20130131-py2.7-macosx-10.8-intel.egg,scipy-0.12.0.dev_b69fe18_20130131-py2.7-macosx-10.8-英特尔.egg

以前我得到了你上面列出的错误,matplotlib 1.3 无法找到 CoreText.framework,但是当我恢复到 matplotlib 1.2 时,错误消失了,我能够很好地运行它——我刚刚编辑了 easy_install.pth文件(不确定这是否是解决问题的正确方法,但是我不需要创建符号链接,因为旧的 1.2 版本工作得很好)

简单的安装是 2013 年 2 月 8 日从 fonnesbeck scipy superpack 重新安装的,自去年秋天以来,我一直在努力让所有东西都焕然一新。

于 2013-02-08T23:12:52.240 回答
0

这对我有用:

brew install pkg-config
brew link pkg-config
brew install pygtk
brew install freetype
brew install libpng

sudo ln -s /usr/local/Cellar/freetype/*/lib/pkgconfig/freetype2.pc /usr/local/lib/pkgconfig/freetype2.pc

git clone git@github.com:matplotlib/matplotlib.git
cd matplotlib
python setup.py build
python setup.py install

参考:

http://blog.caoyuan.me/2012/08/matplotlib-error-mac-os-x/ http://matplotlib.org/faq/installing_faq.html#install-from-git http://www.tapir .caltech.edu/~dtsang/python.html

于 2013-06-28T16:58:58.850 回答
0

您是否安装了 numpy 1.4 版或更高版本?其他先决条件可以在http://matplotlib.org/users/installing.html找到。

当我缺少依赖项时,我收到了类似的模棱两可的消息。

于 2012-09-20T18:10:13.887 回答
0

我自己安装 MatplotLib 包时遇到了一些麻烦。在这里查看我的答案我是如何解决的:

如何检查我的机器上是否安装了 IPython 以及安装这些库的顺序?

于 2012-09-20T18:20:49.107 回答