[Sphinx在更新python文件时不会更新html页面

问题描述 投票:0回答:1

我遇到一个问题,当我的python文件更新时,Sphinx无法更新html页面。

我的docs folder看起来像这样:enter image description here

上方文件夹中的api.rst文件如下所示:

API Documentation
=================

This is a documentation for the Helstrom Quantum Centroid (HQC) classifier's API.

.. automodule:: hqc.HQC
    :members:

hqc folder看起来像这样:enter image description here

docs folderhqc folder都在同一个HQC folder中。

当我更新HQC.py文件并在命令提示符下运行make html时,html页面将不会自我更新。

但是我注意到当我将文件夹名称从hqc更改为新的文件夹名称时,说hqc1(并且在hqc.HQC文件中也将hqc1.HQC更改为api.rst),然后html页面会更新当我运行make html时。

我缺少什么,或者该如何解决?确实希望hqc folder名称保持为hqc

python python-sphinx restructuredtext
1个回答
0
投票

有时在狮身人面像无法识别更改时发生,请使用make clean && make html,这将首先删除所有现有文件,然后创建新文件。

© www.soinside.com 2019 - 2024. All rights reserved.