Mac OS 10.12.9 Python 3.6.* matplotlib 2.0.2
Ein praktisches Werkzeug zum Zeichnen von Diagrammen mit Python
Wenn Sie versuchen, matplotlib zu verwenden, ohne eine Konfigurationsdatei zu erstellen, wird wahrscheinlich der folgende Fehler angezeigt.
RuntimeError: 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.
Ich bezog mich auf diesen Stapel Überlauf. Installation Issue with matplotlib Python [duplicate]
Erstellen Sie eine Datei mit dem Namen matplotlibrc unter ~ / .matplotlib / und fügen Sie den folgenden Code hinzu.
matplotlibrc
backend: TkAgg
Wenn Sie dies speichern, können Sie es sofort ohne Probleme importieren.
Ich bin vor ungefähr zwei Jahren am selben Ort festgefahren, Ich habe es komplett vergessen und auf meinem neuen Mac den gleichen Fehler erhalten.
Danke für deine harte Arbeit.
Recommended Posts