web-dev-qa-db-fra.com

Python matplotlib - ImportError: Aucun module nommé functools_lru_cache

J'ai installé matplotlibpour Python en utilisant pipqui 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
3
r k

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.

1
plutesci

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 .

1
Jirka B.