我正在尝试将我的 Sphinx 文档与 Readthedocs 链接起来。我可以在我的计算机上本地构建文档,但当我尝试让 Readthedocs 自动生成文档时,我收到以下错误:
Configuration error: There is a programmable error in your configuration file: Traceback (most recent call last): File "/home/docs/checkouts/readthedocs.org/user_builds/helstrom-quantum-centroid-classifier/envs/latest/lib/python3.7/site-packages/sphinx/config.py", line 368, in eval_config_file execfile_(filename, namespace) File "/home/docs/checkouts/readthedocs.org/user_builds/helstrom-quantum-centroid-classifier/envs/latest/lib/python3.7/site-packages/sphinx/util/pycompat.py", line 150, in execfile_ exec_(code, _globals) File "/home/docs/checkouts/readthedocs.org/user_builds/helstrom-quantum-centroid-classifier/checkouts/latest/docs/conf.py", line 16, in <module> import sphinx_gallery ModuleNotFoundError: No module named 'sphinx_gallery'
我哪里做错了?
该错误表明 Read the Docs 构建环境中缺少 sphinx_gallery 模块。以下是解决问题的步骤:
sphinx_gallery
确保 sphinx_gallery 在你的本地构建环境中安装,并且你在 conf.py 中使用它。通过以下命令确认:
conf.py
pip freeze | grep sphinx-gallery
如果未安装,请运行:
pip install sphinx-gallery
requirements.txt
在项目的根目录中,创建或更新 requirements.txt 文件,添加 sphinx-gallery:
sphinx-gallery
如果你使用其他依赖(如 sphinx 或扩展),也应该添加它们。示例:
sphinx
sphinx sphinx-gallery
确保提交 requirements.txt 文件到版本控制系统(如 Git)。
readthedocs.yml
如果项目使用 Read the Docs 的配置文件 .readthedocs.yml,确保正确指定了依赖文件。例如:
.readthedocs.yml
version: 2 sphinx: configuration: docs/conf.py python: install: - requirements: requirements.txt
version: 2
requirements: requirements.txt
确保将更改提交到 Git,并推送到远程仓库(如 GitHub)。然后在 Read the Docs 上重新构建文档:
构建完成后,检查是否仍然有错误。如果一切正常,Read the Docs 会成功生成文档。
如果问题仍然存在,可以使用以下方法调试 Read the Docs 构建环境:
pip install -r requirements.txt
通过这些步骤,你应该能够成功将 Sphinx 文档与 Read the Docs 集成。如果仍有问题,请提供更新的构建日志,我可以帮助进一步分析。