Install Ipython notebook and ipythonnotebook on windows
Recently, a training institution asked the author to prepare a Python training material and studied python notebook. It found that it was very powerful. Now, the initial installation steps are recorded as follows:
1. Install Python
This is required, download the latest Python version in the http://www.python.org/download. Download the corresponding version based on your platform, and then install it. 2. Install IPython
Use pip install ipython to download and install the latest ipython component. 3. install pyzmq.
Install Python directly using easy_install, which is not supported by pip install.
4. Install jinja2
Install jinja2 directly using easy_install, which is not supported by pip install.
5. Install tornado
Because notebook is edited on a web server, tornado needs to be installed and pip install tornado is used for installation.
6. Run notebook
Run ipython notebook to start the local notebook service. The following page is displayed. The installation is successful.
7. Open the local notebook file ipython notebook xxx. py/xxx. ipynb (absolute path)
More installation connections are as follows:
Http://www.360doc.com/content/14/0902/11/16740871_406476389.shtml http://www.windowsazure.cn/zh-cn/develop/python/tutorials/ipython-notebook/
From Weizhi note (Wiz)