ubuntu 14.04, pip cannot upgrade matplotllib

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

    I had the same issues trying to install matplotlib on Python 3 using pip3, and it seems that this problem is related to a bare-bones installation of Python 3, and doing a:

    sudo apt-get build-dep matplotlib
    

    followed by

    sudo pip3 install matplotlib 
    

    is probably a better solution than selectively installing only the libraries related to matplotlib.

提交回复
热议问题