安装JupyterNotebook以及汉化
pip安装
1 | pip install jupyter |
汉化
- 在全局环境变量中添加
LANG=zh_CN.UTF-8
,然后再重开cmd窗口即可。更换目录
- 生成配置文件
1
jupyter notebook --generate-config
- 修改配置文件
C:/Users/Administrator/.jupyter/jupyter_notebook_config.py 1
c.NotebookApp.notebook_dir = 'E:/Repository/JupyterNotebook'
代码联想功能
1
[https://blog.csdn.net/weixin_52459924/article/details/119888207](https://blog.csdn.net/weixin_52459924/article/details/119888207)
修改自动保存间隔时间,在jupyter中运行以下命令
每10s保存一次 1
autosave 10
启动
1
jupyter notebook