我已经安装了python-doc。我该如何访问?


16

很抱歉,如果这是一个显而易见的问题,但是Ubuntu将Python,node.js,redis,mysql,mongodb和其他应用程序的文档包放在哪里?

为什么不能通过python-doc在终端中输入来访问它?

Answers:


8

检查所有已安装模块的帮助


:~#python
>>>help()
help>modules word_in_modulname
help>module_name
help>quit
>>>help('module_name')
>>>dir('module_or_class')

这是您在python shell中的操作方式。其中之一会生成输出,向您显示将文档指向Web浏览器的位置。


pydoc -p portnumber

可能是您要找的东西。我假设答案还不够。

如果您需要gui,则可以使用devhelp软件包。


7

由于已经安装了python-doc,因此可以运行dpkg --listfiles python-doc以获取与该软件包一起安装的所有文件的列表。在我的系统上,起点是/usr/share/doc/python-doc/html/index.html。这只是http://docs.python.org上在线提供的文档的本地副本。您还可以从http://docs.python.org/download.html下载该文档,并以各种格式将它们保存在您想要的任何位置。

因此,一般来说doc包都放在/usr/share/docpython-doc在终端上键入不起作用,因为它不是命令的名称。该pydoc命令可能有用,但是对您来说,一个不错的选择是链接到python-doc软件包随附的index.html文件,并将其放在方便的位置。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.