2021-05-12 14:32:11
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.)
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
相關文章