I have installed matplotlib for Python using pip which was completed without error. Yet I get this error when I try to import it:
import matplotlib
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/rishabh/.local/lib/python2.7/site-packages/matplotlib/__init__.py", line 131, in <module> from matplotlib.rcsetup import defaultParams, validate_backend, cycler File "/home/rishabh/.local/lib/python2.7/site-packages/matplotlib/rcsetup.py", line 29, in <module> from matplotlib.fontconfig_pattern import parse_fontconfig_pattern File "/home/rishabh/.local/lib/python2.7/site-packages/matplotlib/fontconfig_pattern.py", line 28, in <module> from backports.functools_lru_cache import lru_cache
ImportError: No module named functools_lru_cache 1 2 Answers
try this I had same problem this morning
sudo apt-get install python-matplotlibI also am using python3.7 a little later after I installed a few modules. I ran.
pip3 install matplotlibI can now import matplotlib.
Uninstall first
pip uninstall backports.functools_lru_cacheand then re-install it
pip install backports.functools_lru_cachelike described in this answer.