本文主要是介绍Matplotlib is building the font cache using fc-list. This may take a moment解决办法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
绝望了一晚上 因为这个错误,在网上扒了半天,终于解决了。
就到错误提示的目录里面找到font_manager.py文件,将其大约在231行左右的direc = os.path.abspath(direc).lower() 改为:direc = direc.split(‘\0’, 1)[0]就可以解决了。
例如我这个错误的目录就是/home/sebar/.local/lib/python3.5/site-packages/matplotlib/font_manager.py将这个修改,再重新启动python就可以了。
这篇关于Matplotlib is building the font cache using fc-list. This may take a moment解决办法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!