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