Installing Pylab/Matplotlib

前端 未结 2 839
广开言路
广开言路 2021-01-01 19:09

I\'m trying to write a program that plots a graph, which made me look into Matplotlib.

I found a tutorial that started out with this little program, that worked fin

2条回答
  •  情深已故
    2021-01-01 19:41

    If Anaconda installed and it is already in your environment path, you can get it simply using

    conda install matplotlib
    

    in command line and then call in Python with

    from pylab import *
    

    This work for me fine as "pip install" and "easy_install" both on Win and Linux caused a lot of issues

提交回复
热议问题