如何使用epydoc生成pdf?
我正在考虑将 epydoc 作为一个模块的文档。 它对我来说看起来不错,并且在生成 html 文档时工作正常。
我想尝试生成pdf格式的文档。 我刚刚修改了配置文件中的“输出”设置。
不幸的是,epydoc 在生成 pdf 文件时失败。 错误是“错误:读取 pstat 文件时出错:[Errno 2] 没有这样的文件或目录:'profile.out'”
它会生成一些 tex 文件。 我想也许我缺少乳胶,但我对 tex 和乳胶不太熟悉。 更重要的是我正在Windows上工作。
制作 epydoc 生成 pdf 文件的下一步应该是什么?
在此先感谢您的帮助
I am considering epydoc for the documentation of one module. It looks ok to me and is working fine when I am generating html document.
I would like to try to generate the documenation in the pdf format. I've just modified the 'output' setting in my config file.
Unfortunately, epydoc fails when generating the pdf file. The error is "Error: Error reading pstat file: [Errno 2] No such file or directory: 'profile.out'"
it generates some tex files. I think that maybe I am missing latex but I am not very familliar with tex and latex. More over I am working on Windows.
What should be the next steps for making epydoc generating pdf file?
Thanks in advance for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您使用了现有的conf 文件。
如果你仔细观察里面,你会看到一个选项
pstat: profile.out
。 此选项表示文件profile.out
将用于生成调用图(请参阅 doc)。您需要使用
profile
或hotspot
模块生成此文件。 例如,您可以通过以下方式运行您的模块也可以使用
hotspot
或cProfile
,这比profile
快得多)( 应该有效(我希望如此)
I suppose that you used an existing conf file.
If you have a closer look inside, you will see an option
pstat: profile.out
. This options says that the fileprofile.out
will be used to generate the call graph (see doc).You need to generate this file, by using the
profile
orhotspot
module. For example, you can run your module by(it is also possible to use
hotspot
orcProfile
, that is much much faster thanprofile
)This should works (I hope so)