a bit late now, so this is probably a post I will want to have deleted....
I am trying to use matplotlib. First I installed the latest version via the web interface, and it reports installed. When I try to use it in the notebook I get an ImportError. Running "pip freeze | grep matplotlib" in a cell tells me I have version 1.2.0 installed.
No module named matplotlib.pyplot
Traceback (most recent call last):
ImportError: No module named matplotlib.pyplot
I then ran `pip install --user matplotlib==2.1.0` in a cell which seems to do the trick... until I try to import a module, specifially "from tensorflow.examples.tutorials.mnist import input_data" which gives me the following error:
~~~~
/lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /srv/hops/anaconda/anaconda/envs/MNIST/lib/python2.7/site-packages/matplotlib/_path.so)
Traceback (most recent call last):
File "/srv/hops/anaconda/anaconda/envs/MNIST/lib/python2.7/site-packages/matplotlib/pyplot.py", line 29, in <module>
import matplotlib.colorbar
File "/srv/hops/anaconda/anaconda/envs/MNIST/lib/python2.7/site-packages/matplotlib/colorbar.py", line 32, in <module>
import matplotlib.artist as martist
File "/srv/hops/anaconda/anaconda/envs/MNIST/lib/python2.7/site-packages/matplotlib/artist.py", line 16, in <module>
from .path import Path
File "/srv/hops/anaconda/anaconda/envs/MNIST/lib/python2.7/site-packages/matplotlib/path.py", line 25, in <module>
from . import _path, rcParams
ImportError: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /srv/hops/anaconda/anaconda/envs/MNIST/lib/python2.7/site-packages/matplotlib/_path.so)
~~~
What am I missing?
Thanks!
/M