消息从Anaconda运行python2.7

时间:2016-09-21 16:42:55

标签: python-2.7 matplotlib anaconda

当我运行python时,我收到以下消息:

/Users/eduardomartinez/anaconda2/lib/python2.7/site-packages/matplotlib/font_manager.py:273: UserWarning: Matplotlib is building the font cache using fc-list. This may take a moment.
warnings.warn('Matplotlib is building the font cache using fc-list. This may take a moment.')

每次发生并且需要10秒或更长时间。

1 个答案:

答案 0 :(得分:1)

您的字体缓存似乎已损坏。根据链接的matplotlib问题页面,您可以在终端上尝试以下操作。

首先尝试:

rm -rf ~/.cache/matplotlib
rm -rf ~/.cache/fontconfig

如果第一个不起作用,则删除fontList.cache

rm -rf ~/.matplotlib/fontList.cache

https://github.com/matplotlib/matplotlib/issues/5836