diff --git a/lib/matplotlib/font_manager.py b/lib/matplotlib/font_manager.py index 46ce55ece54c..ecb6ed8488be 100644 --- a/lib/matplotlib/font_manager.py +++ b/lib/matplotlib/font_manager.py @@ -276,6 +276,7 @@ def get_fontconfig_fonts(fontext='ttf'): fontfiles = {} try: + warnings.warn('Matplotlib is building the font cache using fc-list. This may take a moment.') pipe = subprocess.Popen(['fc-list', '--format=%{file}\\n'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)