在terminal上运行gluoncv时遇到了一个报错问题。
ImportError: 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.
import matplotlib matplotlib.use(‘TkAgg‘) import matplotlib.pyplot as plt
个人猜测是macos不支持一些奇怪的窗口框架,所以只能修改为TK的。
原文:https://www.cnblogs.com/trytoreachpeak/p/12319350.html