ImportError: Python is not insta
2019-04-22 本文已影响0人
DingDingYuan
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.
from __future__ import absolute_import
from __future__ import division
import copy
import logging
from collections import Counter
from sys import platform
import copy
import logging
import matplotlib as mpl
if platform == "darwin": # OS X
mpl.use('TkAgg')
import matplotlib.patches as patches
import matplotlib.path as path
import matplotlib.patheffects as PathEffects
将脚本保持为visualization_utils.py
在程序里面:
import visualization_utils