我是靠谱客的博主 紧张小懒虫,最近开发中收集的这篇文章主要介绍Jupyterlab 启动报错问题:Config option `template_path` not recognized by `ExporterCollapsibleHeadings`.问题:问题分析:解决办法:现存问题:,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

目录

  • 问题:
  • 问题分析:
  • 解决办法:
  • 现存问题:

问题:

启动jupyter lab时报错
在这里插入图片描述

问题分析:

github上有同样问题参考。
在这里插入图片描述
原因分析:
在这里插入图片描述
主要原因是nbconvert版本问题,nbconvert>6.0时, nbconvert中’template_path’ 改成了’template_paths’ ,以至于’Config option ‘template_path’ not recognized’。nbconvert 中的此更改会导致 jupyter_latex_envsjupyter_contrib_nbextensions错误。

解决办法:

github评论区参考
方法一:
nbconvert版本降级,如conda install "nbconvert=5.6.1" ,可行,但是降级有可能会有其他冲突,我未使用这种办法。

方法二:
找到 C:SoftwareAnaconda3Libsite-packages 中的下面两个文件夹,然后在jupyter_latex_envsjupyter_contrib_nbextensions中将“template_path”的所有实例替换为“template_paths”可以修复错误。

太多文件了,没尝试成功,用了第三个简单方法。

方法三:
找到 C:SoftwareAnaconda3Libsite-packagesnbconvertexporters下的 templateexporter.py文件,找到以下内容:
在这里插入图片描述
template_paths = List(['.']).tag(config=True, affects_environment=True)后面添加这行代码template_path = template_paths保存。

    template_paths = List(['.']).tag(config=True, affects_environment=True)
    template_path = template_paths
    extra_template_basedirs = List().tag(config=True, affects_environment=True)
    extra_template_paths = List([]).tag(config=True, affects_environment=True)

重新打开jupyter lab,未报此项错误。
在这里插入图片描述

现存问题:

但是我现在还有一个问题是Config option 'kernel_spec_manager_class' not recognized by 'LabApp'.
还未找到解决办法,希望知道的大佬指导指导。

最后

以上就是紧张小懒虫为你收集整理的Jupyterlab 启动报错问题:Config option `template_path` not recognized by `ExporterCollapsibleHeadings`.问题:问题分析:解决办法:现存问题:的全部内容,希望文章能够帮你解决Jupyterlab 启动报错问题:Config option `template_path` not recognized by `ExporterCollapsibleHeadings`.问题:问题分析:解决办法:现存问题:所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部