Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
阅读文档不会为我的包构建文档,因为它包含 matplotlib。我使用他们网站上的代码来模拟 matplotlib,但构建仍然失败,因为构建 matplotlib 需要 freetype 和 png,而且显然这没有安装在他们的机器上。我尝试过在 virtualenv 中构建和不构建。
这是我的 config.py。
为什么我的模拟不起作用?
如果你的 requirements.txt 中有 matplotlib,Read the Docs 仍然会尝试在 virtualenv 中安装它。您必须将 matplotlib(以及您想要模拟的任何其他内容)排除在要求之外。
如果您仍然希望在 requirements.txt 中进行设置而不是构建文档,我认为您可以在 ReadTheDocs Admin(在高级设置下)中指定不同的需求文件(如 docs/requirements.txt 或其他内容)。
我希望这能解决你的问题。