美文网首页
ImportError: Python is not insta

ImportError: Python is not insta

作者: DingDingYuan | 来源:发表于2019-04-22 20:33 被阅读0次

    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.

    visualization_utils.py

    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

    相关文章

      网友评论

          本文标题:ImportError: Python is not insta

          本文链接:https://www.haomeiwen.com/subject/jtzugqtx.html