1. windows +R 打开cmd

2.安装jupyter

C:\Users\86182>install jupyter

3.打开jupyter notebook

C:\Users\86182>jupyter notebook

 4.建立一个jupyter的配置文件

C:\Users\86182>jupyter notebook --generate-config

 5.建立一个新的文件夹,用于存储自己编写的jupyter notebook文件

 6.配置文件路径如4所示,用记事本(因为我直接双击打不开)打开配置文件,利用Ctrl+F进行搜索

 7.去掉搜索内容前面用于注释的’#‘,然后将路径设置为第4步新建文件夹的路径,注意是双斜杠,不然会出错

## The directory to use for notebooks and kernels.
#  Default: ''
c.NotebookApp.notebook_dir = 'F:\\My jupyter notebook'

保存修改后的配置文件内容,利用第3步代码打开jupyter notebook

 8.New-python 建立新的python文件,即可进行编译


版权声明:本文为qq_43270444原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/qq_43270444/article/details/120648976