我刚开始使用狮身人面像,并使用命令从.rst文件成功构建了html页面
$ sphinx-build -b html source build
由于我的目标是从Jupyter笔记本创建页面,因此我想使用nbsphinx
。但是,如果在将nbsphinx
添加到conf.py扩展名后尝试运行提到的命令,则会收到以下错误消息
Could not import extension nbsphinx (exception: No module named 'sphinx.transforms.post_transforms')
我已经安装了nbsphinx,如conda list
所示
(dummy) C:\Users\rata\someproject conda list
...
nbsphinx 0.4.3 py_0 conda-forge
...
我在做什么错了?
答案 0 :(得分:0)
很明显,我的问题是sphinx
版本。我使用的是1.5.1版本,更新到2.2.0后一切正常!