web-dev-qa-db-fra.com

jupyter notebook affiche un message d'erreur pour matplotlib Bad key "text.kerning_factor"

import pandas as pd 
import numpy as np
import matplotlib.pyplot as plt

Clé incorrecte "text.kerning_factor" sur la ligne 4 dans /home/samyak/anaconda3/lib/python3.7/site-packages/matplotlib/mpl-data/stylelib/_classic_test_patch.mplstyle. Vous devez probablement obtenir un fichier matplotlibrc mis à jour de https://github.com/matplotlib/matplotlib/blob/v3.1.3/matplotlibrc.template ou de la distribution source de matplotlib

6
Samyak L

J'ai eu le même problème et je l'ai résolu en mettant à jour Matplotlib en utilisant le code:

conda upgrade matplotlib

ou

pip install --upgrade matplotlib
1