Jupyter notebook: 一个交互式笔记本。 通过网页形式进行交互,可以用来写 Python等 40 多种编程语言,代码和运行结果都可以保存下载,十分方便。(注:如果安装了Anaconda就不用单独安装Jupyter notebook)
以python3.7为例
1.首先安装 python3.7
默认安装目录为 C:甥敳獲dellAppDataLocalProgramsPythonPython37
命令行进入cd C:甥敳獲dellAppDataLocalProgramsPythonPython37Scripts
命令行输入 pip install jupyter
开始安装,安装完成后ls发现目录多了jupyter系列文件
2.命令行窗口输入: jupyter notebook 启动
同时,默认浏览器会打开 Jupyter notebook 窗口。 说明 Jupyter notebook 安装成功了
3.配置 Jupyter notebook:命令行输入jupyter notebook --generate-config
这时候在 C:甥敳獲当前管理账号下的.jupyter 文件夹多了一个文件,叫
jupyter_notebook_config.py
用记事本打开该文件
将此行#去掉,引号里加入你已经新建的将来用来保存你代码的文件夹目录:例如:D:Codejupyter-notebook
这里要变更为
## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = 'D:Codejupyter-notebook'
记得在windows建立文件夹
配置文件修改完成后, 以后在 jupyter notebook 中写的代码等都会保存在自己创建的目录中。
4.jupyter notebook重新启动
命令行窗口输入: jupyter notebook