Python,Jupyter Notebook,IPython快速安装教程

###Python,IPython,Jupyter Notebook快速安装教程


###下一篇:IPython、Notebook、qtconsole使用教程
###下一篇Python数据科学安装Numby,pandas,scipy,matpotlib等(IPython安装pandas)
最近深入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
Python,Jupyter Notebook,IPython快速安装教程_第1张图片
2.2默认下一步
Python,Jupyter Notebook,IPython快速安装教程_第2张图片
2.3勾选全部用户使用
Python,Jupyter Notebook,IPython快速安装教程_第3张图片
等待安装完成!
2.4检查是否已经安装好pip和setuptool
CMD中输入python -m pip list
Python,Jupyter Notebook,IPython快速安装教程_第4张图片

###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
Python,Jupyter Notebook,IPython快速安装教程_第5张图片

3.3 操作
会自动打开默认浏览器如图
Python,Jupyter Notebook,IPython快速安装教程_第6张图片
###下一篇:IPython、Notebook、qtconsole使用教程
###下一篇Python数据科学安装Numby,pandas,scipy,matpotlib等(IPython安装pandas)

关注公众号 【从入门到精通】

获取系列技术分享
Python,Jupyter Notebook,IPython快速安装教程_第7张图片

你可能感兴趣的:(Python)