前言
最近又是CE认证又是折腾OpenSUSE,结果还把电脑给搞坏了。我的天,乖乖的安装Notebook吧。Eclipse就先再见了。
系统软件
- OS
- Window10
- 软件
- Python 3.4.3
- IPython 4.0.3
Setup IPython
这个以前写个Linux下Setup Python&IPython的,传送门:http://blog.csdn.net/jmilk/article/details/48093421
最近公司要求用Win(Sun the doge),那就再搞一次咯。:-(
Python就略过了,直接某度下载,然后无限Next。
(注意:勾选自动添加环境变量,安装完后重启或刷新环境变量)
Setup IPython
Win下的好处就是能省下安装pip和easy_install的两条指令
- 1
- 1
Setup Notebook
Notebook是基于Web界面的IDE,需要安装多个模块。直接easy_install? 会让你有简直(Sun the doge)的感受。
所以首先还是加入使用pypi镜像源吧。
- 1
- 2
- 3
- 4
- 5
- 1
- 2
- 3
- 4
- 5
临时指定镜像源
Install pyreadline
Tab自动补全
- 1
- 1
Install pyzmq
基于web的Notebook,使用zeromq传递套接字信息。
- 1
- 1
Install Tornado
Web Server Tornado。
- 1
- 1
Install jinja2
- 1
- 1
Install jupyter
如果你是IPython 4.X,那么还需要安装jupyter。IPython4以后将IPython和Notebook分离成为了IPython和Juoyter两个项目,官方将IPython4称之为Big Split。
- 1
- 1
添加默认镜像源
创建文件:%$HOMEPATH%\pip\pip.ini
pip.ini写入
- 1
- 2
- 3
- 1
- 2
- 3
以后使用pip python软件包管理工具就会自动引用指定的镜像源。
Start Notebook
- 1
- 1
Notebook Home
- 1
- 1
Done :-)
转载:http://blog.csdn.net/jmilk/article/details/50612783