最近深入Python的数据分析方面,为了进一步优化工具决定自己动手安装,可是看到安装文档基本千篇一律,跟不上版本变更只好看官方文档,选择了快速安装,这也省去了新手不少的时间,从而有更多的时间专注于工具的使用和科学分析。
(2016年7月2日增量更新,引用jupyter notebook的自我介绍。
The Jupyter Notebook is a web application that allows you to create and share documents that contain live code, equations, visualizations and explanatory text. Uses include: data cleaning and transformation, numerical simulation, statistical modeling, machine learning and much more.)
0.安装环境
Windows10,Python3.5.1,IPython,jupyter notebook,and other functionality
官方安装文档Linux版3.x
官方安装文档列表,包含3.x2.x等等
1.下载Python最新版(3.5.1版链接)(根据机器位数下载如64位)
2.安装Python
有几步不是默认的(注意)
2.1 双击安装包,勾选添加到path
2.2默认下一步
2.3勾选全部用户使用
等待安装完成!
2.4检查是否已经安装好pip和setuptool
CMD中输入python -m pip list
3.快速安装Jupyter Notebook(更新于2016/7/2)
由于ipython notebook 最新整合为Jupyter notebook,所以把2016/1/5的文章更新一下,好正确安装配置开发环境。
3.1打开CMD
3.2 安装jupyter notebook
输入pip install jupyter notebook
即可安装成功。
3.2 启动notebook
输入 jupyter notebook
3.3 操作
会自动打开默认浏览器
CentOS 6.4 中IPython如何启动Qt控制台和NoteBook? http://www.linuxidc.com/Linux/2014-04/100037.htm
CentOS 5安装IPython http://www.linuxidc.com/Linux/2014-04/100038.htm
CentOS和RHEL安装 IPython 0.11 http://www.linuxidc.com/Linux/2014-04/100041.htm
CentOS6.5安装Python2.7.8以及安装IPython http://www.linuxidc.com/Linux/2015-01/111092.htm
CentOS 6.5安装IPython3.0 http://www.linuxidc.com/Linux/2015-03/115601.htm
IPython 的详细介绍:请点这里
IPython 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-08/134104.htm