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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM