The Mac OS X backend will not be able.... 에러가 뜰 때가 있다.
Traceback (most recent call last):
File "main.py", line 1, in <module>
from moviepy.editor import VideoFileClip
File "/Users/imjaegon/.pyenv/versions/3.5.0/lib/python3.5/site-packages/moviepy/editor.py", line 53, in <module>
from .video.io.sliders import sliders
File "/Users/imjaegon/.pyenv/versions/3.5.0/lib/python3.5/site-packages/moviepy/video/io/sliders.py", line 1, in <module>
import matplotlib.pyplot as plt
File "/Users/imjaegon/.pyenv/versions/3.5.0/lib/python3.5/site-packages/matplotlib/pyplot.py", line 115, in <module>
_backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
File "/Users/imjaegon/.pyenv/versions/3.5.0/lib/python3.5/site-packages/matplotlib/backends/__init__.py", line 62, in pylab_setup
[backend_name], 0)
File "/Users/imjaegon/.pyenv/versions/3.5.0/lib/python3.5/site-packages/matplotlib/backends/backend_macosx.py", line 17, in <module>
from matplotlib.backends import _macosx
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.
아래의 명령어를 입력하고
vim ~/.matplotlib/matplotlibrc
아래의 글자를 추가해준다.
backend: TkAgg
다시 시도하면 해결된다 !!