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

weixin_33766168發表於2016-01-05

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
這裡寫圖片描述
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 操作
會自動開啟預設瀏覽器如圖
這裡寫圖片描述

下一篇:IPython、Notebook、qtconsole使用教程

下一篇Python資料科學安裝Numby,pandas,scipy,matpotlib等(IPython安裝pandas)

相關文章