Não foi possível "importar matplotlib.pyplot como plt" no virtualenv

Eu estou trabalhando com balão em um ambiente virtual. Consegui instalar o matplotlib com o pip e possoimport matplotlib em uma sessão Python. No entanto, quando eu o importo como

matplotlib.pyplot as plt

Estou tendo o erro a seguir:

>>> import matplotlib.pyplot as plt

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "//anaconda/envs/myenv/lib/python2.7/site-packages/matplotlib/pyplot.py", line 109, in <module>
    _backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
  File "//anaconda/envs/myenv/lib/python2.7/site-packages/matplotlib/backends/__init__.py", line 32, in pylab_setup
    globals(),locals(),[backend_name],0)
  File "//anaconda/envs/myenv/lib/python2.7/site-packages/matplotlib/backends/backend_macosx.py", line 24, 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.

Estou confuso sobre o motivo pelo qual ele me pede para instalar o Python como estrutura. Isso já não existe? O que significa "instalar o Python como estrutura" e como instalá-lo?

questionAnswers(7)

yourAnswerToTheQuestion