J'ai installé matplotlib
pour Python en utilisant pip
qui s'est terminé sans erreur. Pourtant, je reçois cette erreur lorsque j'essaie de l'importer:
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
essayez cela, j'ai eu le même problème ce matin
Sudo apt-get install python-matplotlib
J'utilise aussi python3.7 un peu plus tard après avoir installé quelques modules. Iran.
pip3 install matplotlib
Je peux maintenant importer matplotlib.
Désinstaller en premier
pip uninstall backports.functools_lru_cache
puis réinstallez-le
pip install backports.functools_lru_cache
comme décrit dans cette réponse .