Matplotlib Version

前端 未结 5 1071
刺人心
刺人心 2021-01-03 22:21

Having my system prepped with homebrew and using pip install matplotlib after successful installation of numpy and scipy, I\'m getting a successful installation

5条回答
  •  春和景丽
    2021-01-03 22:53

    Copy-Paste the following code in your terminal and press enter , it will show the version of matplotlib installed on your system ::

    python 
    import matplotlib
    print('matplotlib: {}'.format(matplotlib.__version__))
    

提交回复
热议问题