参考Link:
(3)机器学习新手必看:Jupyter Notebook入门指南
https://blog.csdn.net/guleileo/article/details/80490921
(4)Windows下的Jupyter Notebook 安装与自定义启动(图文详解)
https://www.cnblogs.com/zlslch/p/6984403.html
(3)机器学习新手必看:Jupyter Notebook入门指南
https://blog.csdn.net/guleileo/article/details/80490921
出品 | 人工智能头条(公众号ID:AI_Thinker)
Jupyter Notebook 是一款开放源代码的 Web 应用程序,可让我们创建并共享代码和文档。
它提供了一个环境,你可以在其中记录代码,运行代码,查看结果,可视化数据并在查看输出结果。这些特性使其成为一款执行端到端数据科学工作流程的便捷工具 ,可以用于数据清理,统计建模,构建和训练机器学习模型,可视化数据以及许多其他用途。
当你还在构建项目原型时,Jupyter Notebooks 真的特别好用,因为你的代码是被写入独立的单元中并被单独执行的。这允许用户测试项目中的特定代码块,而无需从脚本的开始执行代码。许多其他的 IDE 环境(Integrated Development Environment, 集成开发环境)(如 RStudio )也以其他几种方式做到这一点,但我发现 Jupyter 的单个单元结构是最好的。
一、安装Jupyter Notebook
1、Anaconda
新用户可以使用 Anaconda 发行版来同时安装 Python 和 Jupyter Notebooks。
Anaconda 安装了这两种工具,并包含了数据科学和机器学习社区中常用的很多软件包。你可以从这里下载最新版本的Anaconda 。
下载地址:https://jupyter.readthedocs.io/en/latest/install.html
2、pip 安装方法
如果出于某种原因,你决定不使用 Anaconda,那么你需要确保你的机器正在运行最新版本的 pip。 怎么做?如果你已经安装了 Python,那么 pip 已经安装好了。要升级到最新的版本,请参照下面的代码:
#Linux and OSX
pip install -U pip setuptools
#Windows
python -m pip install -U pip setuptools
一旦 pip 安装完毕,你可以继续安装 Jupyter:
#For Python2
pip install jupyter
#For Python3
pip3 install jupyter
查看官方的 Jupyter 安装文档
https://jupyter.readthedocs.io/en/latest/install.html
二、运行Jupyter Notebook
运行命令:cmd下找到python安装所在路径的Scripts文件夹,输入jupyter notebook
执行上面命令之后, Jupyter Notebook 将在你的默认浏览器中打开,网址为:http://localhost:8888/tree
在某些情况下,它可能无法自动打开。这种情况下,你的终端或者命令提示符中将会生成一个带有令牌密钥( token key )的网址。要打开 Notebook,你需要将整个 URL(包括令牌密钥)复制粘贴到浏览器中。
Notebook 打开后,你会在顶部看到三个选项卡:Files(文件),Running(运行)和 Clusters(集群)。Files 基本上列出了所有的文件,Running 显示你当前已经打开的终端和Notebooks,Clusters 由 IPython parallel 包提供,用于并行计算。
要打开一个新的 Jupyter Notebook,请单击页面右侧的“New”选项卡。在这里,你有四个选项可供选择:
⦁ Python 3
⦁ Text File (文本文件)
⦁ Folder (文件夹
⦁ Terminal (终端)
在 "Text File" 选项中,你会得到一个空白的文档。输入你喜欢的任何字母,单词和数字。它基本上是一个文本编辑器(类似于 Ubuntu 上的应用程序)。你也可以选择一种语言(支持非常多的语言),然后用该语言来写一个脚本。你还可以查找和替换文件中的单词。
在 "Folder" 选项中, 顾名思义它的功能就是创建文件夹。你可以创建一个新文件夹来放入文件,重新命名或者删除它。
而"Terminal" 的工作方式与你的 Mac 电脑或 Linux 电脑上的终端完全相同(或者 Windows 上的 cmd )。它在你的Web浏览器中支持终端会话。在这个终端中输入 python ,瞧!现在你已经可以开始写 python 脚本了。
GitHub库:https://github.com/jupyter/jupyter/wiki/A-gallery-of-interesting-Jupyter-Notebooks
(4)Windows下的Jupyter Notebook 安装与自定义启动(图文详解)
https://www.cnblogs.com/zlslch/p/6984403.html
1、打开CMD管理员命令窗口
Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
C:\Users\Administrator>cd /d D:\
D:\>cd D:\SoftWare\Python\Python36\Scripts
D:\SoftWare\Python\Python36\Scripts>pip install jupyter
2、输入命令启动jupyter notebook
D:\SoftWare\Python\Python36\Scripts>jupyter notebook
[I 10:37:02.828 NotebookApp] Serving notebooks from local directory: D:\SoftWare
\Python\Python36\Scripts
[I 10:37:02.828 NotebookApp] 0 active kernels
[I 10:37:02.828 NotebookApp] The Jupyter Notebook is running at: http://localhos
t:8888/?token=8f82159edecad826ce9769f126402fc58f5b87b8d1050b0d
[I 10:37:02.829 NotebookApp] Use Control-C to stop this server and shut down all
kernels (twice to skip confirmation).
[C 10:37:02.833 NotebookApp]
Copy/paste this URL into your browser when you connect for the first time,
to login with a token:
http://localhost:8888/?token=8f82159edecad826ce9769f126402fc58f5b87b8d10
50b0d
[I 10:37:03.628 NotebookApp] 302 GET / (::1) 1.00ms
[I 10:37:03.647 NotebookApp] 302 GET /tree? (::1) 5.00ms
[I 10:37:05.535 NotebookApp] Accepting one-time-token-authenticated connection f
rom ::1
若默认浏览器打开 Jupyter notebook 窗口,说明 Jupyter notebook 安装成功了。
3、配置
Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
C:\Users\Administrator>cd /d D:\
D:\>cd D:\SoftWare\Python\Python36\Scripts
D:\SoftWare\Python\Python36\Scripts>jupyter notebook --generate-config
Writing default config to: C:\Users\Administrator\.jupyter\jupyter_notebook_conf
ig.py
D:\SoftWare\Python\Python36\Scripts>