本文共 1519 字,大约阅读时间需要 5 分钟。
最近又是CE认证又是折腾OpenSUSE,结果还把电脑给搞坏了。我的天,乖乖的安装Notebook吧。Eclipse就先再见了。
这个以前写个Linux下Setup &IPython的,传送门:
最近公司要求用Win(Sun the doge),那就再搞一次咯。:-( Python就略过了,直接某度下载,然后无限Next。 (注意:勾选自动添加环境变量,安装完后重启或刷新环境变量)Win下的好处就是能省下安装pip和easy_install的两条指令
D:\development\Python3.X\Scripts>easy_install.exe ipython
Notebook是基于Web界面的IDE,需要安装多个模块。直接easy_install? 会让你有简直(Sun the doge)的感受。
所以首先还是加入使用pypi镜像源吧。http://pypi.douban.com/ #豆瓣http://pypi.hustunique.com/ #华中理工大学http://pypi.sdutlinux.org/ #山东理工大学http://pypi.mirrors.ustc.edu.cn/ #中国科学技术大学
Tab自动补全
pip install pyreadline -i http://pypi.douban.com/simple
基于web的Notebook,使用zeromq传递套接字信息。
pip install pyzmq -i http://pypi.douban.com/simple
Web Server Tornado。
pip install tornado -i http://pypi.douban.com/simple
pip install jinja2 -i http://pypi.douban.com/simple
如果你是IPython 4.X,那么还需要安装jupyter。IPython4以后将IPython和Notebook分离成为了IPython和Juoyter两个项目,官方将IPython4称之为Big Split。
pip install jupyter -i http://pypi.douban.com/simple
创建文件:%$HOMEPATH%\pip\pip.ini
pip.ini写入[global]index-url = http://pypi.douban.com/simple
以后使用pip python软件包管理工具就会自动引用指定的镜像源。
ipython.exe notebook
Notebook Home
http://localhost:8888/tree
Done :-)
转载:http://blog.csdn.net/jmilk/article/details/50612783