ubuntu 14.04, pip cannot upgrade matplotllib

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

    This worked for me:

    python -m pip install -U pip setuptools
    python -m pip install matplotlib
    

    For more details, follow : https://matplotlib.org/2.0.0/users/installing.html

提交回复
热议问题