ubuntu 14.04, pip cannot upgrade matplotllib

后端 未结 9 1256
一个人的身影
一个人的身影 2020-11-29 00:49

When I try to upgrade my matplotlib using pip, it outputs:

Downloading/unpacking matplotlib from https://pypi.python         


        
9条回答
  •  粉色の甜心
    2020-11-29 01:46

    This is a known bug that has been fixed (https://github.com/matplotlib/matplotlib/pull/3414) on master.

    The bug is in the handling of searching for a freetype installation. If you install the Linux package freetype-dev, you will avoid this bug and be able to compile matplotlib.

    sudo apt-get install libfreetype6-dev
    

提交回复
热议问题