我按照这里的说明http://www.slideviper.oquanta.info/tutorial/slideshow_tutorial_slides.html#/10将我的 ipynb 文件转换为 html 幻灯片。
由于我没有 nbconvert,我$git clone https://github.com/jupyter/nbconvert.git
和$pip install nbconvert
. 一切看起来都很好。
在我的文件夹中$ls
返回CONTRIBUTING.md COPYING.md docs MANIFEST.in nbconvert README.md readthedocs.yml scripts setup.cfg setup.py
在这里我找不到 python nbconvert.py 因为 nbconvert 是一个文件夹,我$cd nbconvert
和$ls
. 这显示了:
exporters __init__.py nbconvertapp.py preprocessors templates utils writers
filters __main__.py postprocessors resources tests _version.py
不过,我没有看到nbconvert.py
我尝试过$python nbconvertapp.py -f reveal myfile.ipynb
,错误:
File "nbconvertapp.py", line 26, in <module>
from .exporters.export import get_export_names, get_exporter
ValueError: Attempted relative import in non-package`
我不清楚这里发生了什么。有人可以指导我正确安装或使用 nbconvert 的方法,以便我可以将 ipynb 文件转换为 html 幻灯片吗?谢谢!