IPython Notebook

  1. http://ipython.org/notebook.html
  2. The IPython Notebook is a web-based interactive computational environment where you can combine code execution, text, mathematics, plots and rich media into a single document
  3. http://ipython.org/install.html
  4. sudo apt-get install ipython-notebook
  5. sudo apt-get install python-matplotlib python-scipy python-pandas python-sympy python-nose
  6. import matplotlib.pyplot as plt
    plt.plot([1,2,3,4])
  7. ipython notebook
原文地址:https://www.cnblogs.com/dmdj/p/3415133.html