用Jupyter notebook默认打开的界面时,默认是在Home路径,会看见一大推东西,假如我们只想展示jupyter的工程目录应该怎么办?
就是修改配置!
配置文件在.jupyter\jupyter_notebook_config.py
如果默认没有,可以手动生成,在cmd中输入以下代码:
jupyter notebook --generate-config
然后打开jupyter_notebook_config.py,找到
c.NotebookApp.notebook_dir=u"C\\study\\jupyter"
添加你的目录,再次启动notebook就OK了