在git clone和pip install nbconvert之后找不到nbconvert.py

时间:2016-07-13 16:13:59

标签: python jupyter nbconvert

我按照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`

我不清楚这里发生了什么。有人可以指导我正确的方式来insall或使用nbconvert,这样我就可以将我的ipynb文件翻译成html幻灯片吗?谢谢!

1 个答案:

答案 0 :(得分:0)

您应该将c:\ python27 \ Script \ jupyter.exe(或此文件所在的位置)添加到Windows路径,然后您应 cd 到.ipynb文件所在的位置并键入windows cmd控制台:

jupyter nbconvert youfile.ipynb format

“格式”可以是:html,幻灯片,pdf等......

祝你好运