ModuleNotFoundError: No module named 'jupyter_contrib_nbextensions' .ipynb文件转换.py文件时遇到错误(示例

Posted Ting-H

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ModuleNotFoundError: No module named 'jupyter_contrib_nbextensions' .ipynb文件转换.py文件时遇到错误(示例相关的知识,希望对你有一定的参考价值。

C:\\Users\\moyuan\\Desktop\\fire500>jupyter nbconvert --to script *.ipynb
Traceback (most recent call last):
  File "E:\\Work_Software\\Anaconda3\\Scripts\\jupyter-nbconvert-script.py", line 10, in <module>
    sys.exit(main())
  File "E:\\Work_Software\\Anaconda3\\lib\\site-packages\\jupyter_core\\application.py", line 266, in launch_instance
    return super(JupyterApp, cls).launch_instance(argv=argv, **kwargs)
  File "E:\\Work_Software\\Anaconda3\\lib\\site-packages\\traitlets\\config\\application.py", line 658, in launch_instance
    app.start()
  File "E:\\Work_Software\\Anaconda3\\lib\\site-packages\\nbconvert\\nbconvertapp.py", line 337, in start
    self.convert_notebooks()
  File "E:\\Work_Software\\Anaconda3\\lib\\site-packages\\nbconvert\\nbconvertapp.py", line 497, in convert_notebooks
    self.exporter = cls(config=self.config)
  File "E:\\Work_Software\\Anaconda3\\lib\\site-packages\\nbconvert\\exporters\\templateexporter.py", line 256, in __init__
    super(TemplateExporter, self).__init__(config=config, **kw)
  File "E:\\Work_Software\\Anaconda3\\lib\\site-packages\\nbconvert\\exporters\\exporter.py", line 109, in __init__
    self._init_preprocessors()
  File "E:\\Work_Software\\Anaconda3\\lib\\site-packages\\nbconvert\\exporters\\exporter.py", line 263, in _init_preprocessors
    self.register_preprocessor(preprocessor, enabled=True)
  File "E:\\Work_Software\\Anaconda3\\lib\\site-packages\\nbconvert\\exporters\\exporter.py", line 224, in register_preprocessor
    preprocessor_cls = import_item(preprocessor)
  File "E:\\Work_Software\\Anaconda3\\lib\\site-packages\\traitlets\\utils\\importstring.py", line 34, in import_item
    module = __import__(package, fromlist=[obj])
ModuleNotFoundError: No module named \'jupyter_contrib_nbextensions\'

 将.ipynb文件转换.py文件时遇到错误

 转换命令

1 jupyter nbconvert --to script *.ipynb 

错误原因,没有jupyter_contrib_nbextensions,可尝试下面的解决方案

python -m pip install --user jupyter_contrib_nbextensions
jupyter contrib nbextension install --user --skip-running-check
python -m pip install --user jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user

再次运行指令

jupyter nbconvert --to script *.ipynb 

 

 

 成功

 参考博客:https://blog.csdn.net/m0_37586991/article/details/103180717

 

以上是关于ModuleNotFoundError: No module named 'jupyter_contrib_nbextensions' .ipynb文件转换.py文件时遇到错误(示例的主要内容,如果未能解决你的问题,请参考以下文章

ModuleNotFoundError: No module named 'gdbm'

Python:ModuleNotFoundError: No module named 'windows'

PySpark 自定义 UDF ModuleNotFoundError: No module named

用Java调用.py程序出现ModuleNotFoundError: No module named 'java'

ModuleNotFoundError: No module named 'jupyter_contrib_nbextensions' .ipynb文件转换.py文件时遇到错误(示例

ModuleNotFoundError: No module named 'jupyter_contrib_nbextensions' .ipynb文件转换.py文件时遇到错误(示例