我想利用 Sphinx 生成模块的文档,使用 sphinx-quickstart 初始化,在配置文件中,指定了extensions = ['sphinx.ext.autodoc']
,并且在 index.rst 中指定模块 my_module_for_test:
.. automodule:: my_module_for_test
:members:
进入根目录的 venv 虚拟环境,并运行 make 脚本或者sphinx-build -b html source build
生成 html 文档,但是却报告找不到模块 my_module_for_test 。
WARNING: autodoc: failed to import module 'my_module_for_test'; the following exception was raised:
No module named 'my_module_for_test'
在这里可以看到上述项目 project_for_autodoc - GitHub.
这看起来像是环境出了问题,但是,在 source 目录下,运行位于 source 的 test_import.py 脚本,却可以成功导入 my_module_for_test
这到底出了什么问题?我现在感到很困惑。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.