jupyter lab学习笔记

1.先激活环境在打开jupyter lab:conda activate env_name;jupyter lab
服务器报错:
jupyter lab学习笔记_第1张图片

 pip list

查看TORNADO库的版本 如果为6.0以上,执行以下代码安装5.5.1版本:pip install tornado==5.1.1
运行还是报错:
AttributeError: module ‘collections’ has no attribute ‘MutableMapping’

最后还是决定重新安装软件!

更新20220609:后来看到这篇文章:https://blog.csdn.net/weixin_48927364/article/details/123604128

发现确实是中文名称,修改后,jupyter lab 又可以用了!

2.jupyer 新建文件夹如何规定路径
文件默认路径:jupyter notebook --generate-config,打开配置文件,找到#c.NotebookApp.notebook_dir = ‘’,去掉该行前面的“#”;在打算存放文件的位置先新建一个文件夹(提前建,英文名称!
修改完成后保存退出,重新打开jupyter。

3.jupyter更改主题
(1)pip install jupyterthemes
(2)主题风格
(3)如更换为:jt -t chesterish -f fira -fs 17 -cellw 90% -ofs 15 -dfs 15 -T -T
注意如何新创建的环境,需要先激活环境再安装主题。

你可能感兴趣的:(#,python,jupyter)