AttributeError: 'module' object has no attribute 'to_rgb'

后端 未结 4 1076
春和景丽
春和景丽 2020-12-17 04:14

I wrote a simple code to form taylor digram using skillmetrics package. I used python version Python 2.7.12. The code is as follows:-

import matplotlib.pyplo         


        
4条回答
  •  独厮守ぢ
    2020-12-17 04:55

    Try upgrading matplotlib and numpy to the latest version

    sudo pip3 install --upgrade numpy
    sudo pip3 install --upgrade matplotlib
    

提交回复
热议问题