ubuntu 14.04, pip cannot upgrade matplotllib

后端 未结 9 1230
一个人的身影
一个人的身影 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:40

    Found this page while looking answer for fedora 24.

    RPM solution is:

    dnf install freetype-devel

    0 讨论(0)
  • 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
    
    0 讨论(0)
  • 2020-11-29 01:54

    If you re running Ubuntu server 14.04 u should add this font dependency

    sudo apt-get install libxft-dev
    

    Source

    0 讨论(0)
提交回复
热议问题