天天看點

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

最近深入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.)

windows10,python3.5.1,ipython,jupyter notebook,and other functionality

<a href="http://ipython.org/ipython-doc/3/install/install.html">官方安裝文檔linux版3.x</a>

<a href="http://ipython.org/documentation.html">官方安裝文檔清單,包含3.x2.x等等</a>

2.安裝python

有幾步不是預設的(注意)

2.1 輕按兩下安裝包,勾選添加到path

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

2.2預設下一步

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

2.3勾選全部使用者使用

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

等待安裝完成!

2.4檢查是否已經安裝好pip和setuptool

cmd中輸入python -m pip list

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

3.1打開cmd

3.2 安裝jupyter notebook

輸入<code>pip install jupyter notebook</code>

即可安裝成功。

3.2 啟動notebook

輸入 <code>jupyter notebook</code>

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

3.3 操作

會自動打開預設浏覽器如圖

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