So to start, here are two of them.
Matplotlib in Python
Last Saturday, I tried working with Pandas and Matplotlib for our company hackathon. Unfortunately, I found out that Matplotlib doesn't work with the non-framework version of Python in OSX. This is the error that comes up if I try to run the non-framework version.
globals(),locals(),[backend_name],0)
File "/Users/avsimon/Envs/python-data-visualization-learning/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. If you are Working with Matplotlib in a virtual enviroment see 'Working with Matplotlib in Virtual environments' in the Matplotlib FAQ
Fortunately, there is work around for this issue. You can see it here.
0 comments:
Post a Comment