I want to change my font for matplotlib texts on figures to Arial Narrow, but unfortunately I always get the following error message:
py:1316: UserWarning: findfont: Font family ['Arial Narrow'] not found. Falling back to DejaVu Sans
I also wrote the following in my code, even though I use it, it does not work:
from matplotlib import rcParams
rcParams['font.family'] = 'Arial Narrow'
I use Spyder Python 3.6 in Anaconda on Windows 7.