如何获取 Texinfo Info 格式的 Python 文档?
从 Python 2.6 开始,文档似乎位于新的 reStructuredText 格式,构建一个 Texinfo Info< 似乎不太容易/a> 文件不再是开箱即用的。
我是一名 Emacs 迷,更喜欢将文档安装在 Info.plist 中。
有人有 Texinfo 格式的 Python 2.6 或更高版本的文档吗? 你是如何转换它们的? 或者,那里有维护的构建吗?
我知道我可以使用 w3m 或 haddoc 来查看 html 文档 - 我真的希望它们在 Info.plist 中。
我玩过 Pandoc 但经过一些小实验后,它似乎不能很好地处理文档之间的链接,而我的更大的实验 - 在所有文档中运行它,看看会发生什么 - 自从我开始以来两天仍然进展顺利!
两个很好的答案
突出显示下面的两个答案,因为 SO 不允许我接受这两个答案:
- @wilfred-hughes:从 MELPA 安装 是获取 Emacs 预构建信息的最快方法
- @alioth: 自己构建 看起来要容易得多比我2009年问这个问题时还要多
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(11)
Jon Waltman http://bitbucket.org/jonwaltman/sphinx-info 分叉了 sphinx 并编写了一个texinfo builder,它可以构建python文档(我还没有做过)。 看来很快就会合并到sphinx中了。
以下是下载的快速链接(临时):
生成 texinfo 格式的 python 文档的步骤:
下载 python 源代码
下载并安装 sphinx-info 包(在 virtualenv 中)
从 python 源进入 Python/Doc 目录
编辑 Makefile,将
build
目标替换$(PYTHON ) tools/sphinx-build.py
和sphinx-build
,然后将此目标添加到 makefile 中,注意,echo 之前的空格是制表符:编辑 Python/Doc/conf .py 添加:
然后运行
make texinfo
,它应该在 build/texinfo 目录中生成 texifile。要生成信息文件,请运行
makeinfo python.texi
Jon Waltman http://bitbucket.org/jonwaltman/sphinx-info has forked sphinx and written a texinfo builder, it can build the python documentation (I've yet done it). It seems that it will be merged soon into sphinx.
Here's the quick links for the downloads (temporary):
Steps to generate python doc in texinfo format:
Download the python source code
Download and install the sphinx-info package (in a virtualenv)
Enter in the Python/Doc directory from the python sources
Edit the Makefile, to the
build
target replace$(PYTHON) tools/sphinx-build.py
withsphinx-build
, then add this target to the makefile, pay attention, the space before echo is a TAB:Edit the Python/Doc/conf.py adding:
Then run
make texinfo
and it should produce the texifile in the build/texinfo directory.To generate the info file run
makeinfo python.texi
我已将 Python 文档打包为 texinfo 文件。
如果您将 Emacs 与 MELPA 一起使用,则只需使用
Mx package-install python-info
进行安装即可。I've packaged up the Python docs as a texinfo file.
If you're using Emacs with MELPA, you can simply install this with
M-x package-install python-info
.毫无疑问,自己生成有关您的特定 Python 版本的 Python 文档是很酷且具有挑战性的。 只需遵循 EmacsWiki,或者随意在本地编译它(在 Debian Jessy for Python3.4.2):
我得到了这棵树:
现在可以通过以下方式在 Emacs 中本地查看 Python 文档:
python-info 是一个文件名(上面树中的第四个),甚至可以为某些任意节点添加书签,以方便习惯和定期查看。
With no doubt it would be cool and challenging to generate the Python documentation on your particular Python version by yourself. Just follow EmacsWiki, or feel free to compile it locally (at Debian Jessy for Python3.4.2):
I got this tree:
And now it is possible to review python documentation natively in Emacs by
python-info is a filename (fourth in the tree above), and even to bookmark some arbitrary nodes for habitual and regular reviewing convenience.
对于那些关注这个问题并希望得到答案的人,我找到了您可能想尝试的另一个 rst2texinfo 实现:
http://bitbucket.org/jonwaltman/rst2texinfo/src
For those following this question in the hope of an answer, I found another rst2texinfo implementation which you might like to try:
http://bitbucket.org/jonwaltman/rst2texinfo/src
另一个“解决方法”是直接在 Emacs 中按照 Nikokrock 的建议执行 pydoc:
Another "workaround" is to execute
pydoc
as suggested by Nikokrock directly in Emacs:Michael Ernst 曾经维护 Python 文档的 Info 格式:
http:// www.cs.washington.edu/homes/mernst/software/#python-info
您可以尝试使用他的 makefile 和 html2texi 脚本来生成更新版本。 两者均链接至上述 URL。 我不确定它现在的效果如何(最后一个版本是在 2001 年左右),但他的脚本得到了很好的注释(grep 代表“python”)。
Michael Ernst used to maintain Info formats of Python docs:
http://www.cs.washington.edu/homes/mernst/software/#python-info
You can try using his makefile and html2texi script to generate an updated version. Both are linked at the above URL. I'm not sure how well it works now (the last version was around 2001), but his script is well commented (grep for "python").
对于 Python 3.8.0 及更高版本,可在 https://www. python.org/ftp/python/doc 和/或 https://docs.python .org/3/archives/。
For Python 3.8.0 and later, pre-built Info files are available at https://www.python.org/ftp/python/doc and/or https://docs.python.org/3/archives/.
Python 文档现在使用 Sphynx 框架生成。 该框架没有 texinfo 输出格式。 目前它有:
也许你可以使用 Latex 输出得到你想要的东西。 使用文本输出,您将丢失交叉引用。
当我需要文本输出时,我个人更喜欢使用 pydoc。 使用 Vim,我有一个快捷方式来调用 pydoc 并打开一个窗口,其中包含光标下实体的文档......
Python docs are now generated using Sphynx framework. This framework does not have texinfo output format. Currently it has:
Maybe you can get what you want using the Latex output. With the text output you will lost the cross ref.
Personnaly I prefer using pydoc when I want textual output. With Vim I have a shorcut to call pydoc and open a window with the doc for the entity under my cursor...
Ubuntu 发行版至少从 18.04 (bionic) 开始提供包 pythonX.Y-doc (其中包括 Info 格式的文档); 19.04 XY 代表 2.7、3.7 和 3.8。 该软件包没有太多依赖项,我认为也可以将其安装在其他发行版中。
The Ubuntu distribution provides packages pythonX.Y-doc (which include the documentation in Info format) at least since 18.04 (bionic); in 19.04 X.Y stands for 2.7, 3.7 and 3.8. The package does not have many dependencies, I assume it is possible to install it in other distributions too.
不管你相信与否,Python 项目实际上为我们提供了一种通过各种 Makefile 来实现此目的的方法。 这些文件利用 Python Sphinx 项目生成
texi
文件,然后makeinfo
可以将其转换为info
(Emacs 用于文档的格式)。除了 Python3000 之外,这些说明还需要 GNU Make 和 Texinfo。 这些都打包在大多数 Linux 发行版中。 不同的发行版可能使用不同的命名约定。 请参阅发行版的文档以获取相应的包名称。 对于基于 Debian 的发行版:
对于非 Debian 系统,软件包名称通常相似。 对于 Windows 用户,我建议 WSL 或创建虚拟机。
1. 下载文档
导航到 https://www.python.org/ftp/python/ 并下载适合您的 Python 版本的 tarball。 它看起来像:
您可以使用
wget
下载 tarball 并使用tar
解压它。 选项x
和f
用于“提取文件”:2. 在
Python-XYZ/Doc
中运行make venv
>Sphinx 需要的依赖项比基本
pip
安装捆绑的依赖项更多。 幸运的是,Python 项目提供了一个 Makefile 来创建必要的环境。 有关准确的详细信息,请参阅Makefile
。3. 运行
sphinx-build
现在正确的环境已经设置完毕,我们可以运行Sphinx了。 此调用使用
-d
选项创建在生成期间使用的缓存。 当前目录中找到的文档文件由texinfo
“builder”转换并输出到build/texinfo
:4.使用
makeinfo
生成info
文件同样,Python 维护者已经给了我们我们需要的东西(即使他们没有很好地记录它)。 上一个命令创建了一个
texi
文件以及另一个Makefile
。 Makefile 调用makeinfo
。就像印第安纳琼斯一样,你看到了圣杯。 许多人在这段旅程中丧生; 你赢了。 花点时间庆祝一下。
注意:
makeinfo
转换对我来说会产生错误。 没关系,我说。 获得了所需的信息,我贪婪地喝了它。5. 将
python.info
加载到Emacs中...使用
Cu Ch i
直接打开python.info
。要在 Emacs 帮助目录节点中安装信息文件,首先
检查
Ch v Info-default-directory-list
以了解信息文件的存储位置。 将 python.info 文件放在那里。 该目录中可能有一个名为dir
的文件。dir
文件由texinfo
生成,包含节点列表。 如果不存在dir
文件,请不要担心,这就是我们正在创建的文件。 请注意,不建议手动编辑dir
文件1。运行
update-info-dir
位于您放置python.info
的目录中。 这将使用python.info
更新(或创建)dir
。有关 texinfo 系统的完整详细信息,请参阅 https://www.gnu.org/software/texinfo/manual/texinfo/html_node/Installing-an-Info-File.html。
1除了人为错误(例如错误输入引用)之外,“格式错误”的
dir
文件也可能会出现问题。Believe it or not, the Python project actually provides us a way to do this through various Makefiles. The files utilize the Python Sphinx project to generate a
texi
file whichmakeinfo
can then convert toinfo
, the format Emacs uses for documentation.In addition to Python3000, these instructions require GNU Make and Texinfo. These are packaged in most Linux distributions. Different distros may use different naming conventions. Refer to your distro's documentation for the corresponding package names. For Debian based distros:
Package names are usually similar for non-Debian systems. For Windows users, I recommend WSL or creating a virtual machine.
1. Download the documentation
Navigate to https://www.python.org/ftp/python/ and download the tarball for your Python version. It will look like:
You can use
wget
to download the tarball andtar
to unpack it. The optionsx
andf
are for "extract file":2. Run
make venv
inPython-X.Y.Z/Doc
Sphinx requires more dependencies than are bundled with the basic
pip
install. Fortunately, the Python project provides aMakefile
to create the necessary environment. See theMakefile
for precise details.3. Run
sphinx-build
Now that the correct environment is set up, we can run Sphinx. This call creates a cache used during generation with the
-d
option. The documentation files found in the current directory are converted by thetexinfo
"builder" and output tobuild/texinfo
:4. Use
makeinfo
to generate theinfo
fileAgain, the Python maintainers have given us what we need (even if they haven't documented it well). The previous command created a
texi
file along with anotherMakefile
. The Makefile callsmakeinfo
.Like Indiana Jones, you behold the Holy Grail. Many have perished in this journey; you have prevailed. Take a moment to celebrate.
Note: The
makeinfo
conversion yields errors for me. No matter, I say. The desiredinfo
is obtained and I greedily drink from it.5. Load
python.info
into Emacs...Use
C-u C-h i
to directly openpython.info
.To install the info file within the Emacs Help Directory node, first
check
C-h v Info-default-directory-list
for where info files are stored. Putpython.info
file there. There may be a file calleddir
in that directory. Thedir
file is generated bytexinfo
and contains the node listing. If nodir
file exists, don't worry, that's what we're creating. Note that it's not recommended to editdir
files manually1.Run
update-info-dir
in whichever directory you putpython.info
. This will update (or create)dir
withpython.info
.For complete details about the
texinfo
system, see https://www.gnu.org/software/texinfo/manual/texinfo/html_node/Installing-an-Info-File.html.1Aside from human error, like mistyping a reference, issues may arise due to "malformed"
dir
files.从 Emacs 信息浏览器识别的源代码构建:
Build from source, which Emacs info browser recognizes: