基于 python2.7.13 32-bit版本安装
1、安装pyreadline
https://pypi.python.org/pypi/pyreadline
下载对应的32位版本
2、用pip安装iPython
进入目录 c:\Python27\Scripts>
输入命令: pip install ipython
2.1 或者从git安装iPython
https://github.com/ipython/ipython.git
把ipython.git pull 下来,checkout 到5.1分支(适用于Python2.7)。
使用cmd进入ipython目录,输入 python setup.py install 即可
检查iPython是否安装成功
命令行输入 ipython 即可进入ipython
命令行输入 ipython --pylab
ipython会自动importSciPy,NumPy和matplotlib包,也就是不需要在命令输入 from numpy import * 等命令
3、安装notebook
pip install jupyter
http://localhost:8888/ 检查notebook服务器是否已经启动