Skip to content Skip to sidebar Skip to footer

Python Pip - Install Documentation For Packages?

Is there a way to install/generate the documentation for the packages installed using pip? I wish to install all the required packages for a project, as well as all the associated

Solution 1:

I think you're looking for an equivalent to the way that ruby automatically (unless suppressed) generates rdoc from installed gems/packages.

In python, there is a standardized mechanism for annotating code with documentation -- docstrings with optional formatting. However there isn't a standardized way of generating/storing documentation from python code. Each python package may have a different mechanism, so there couldn't be a way for pip to generate it.

Post a Comment for "Python Pip - Install Documentation For Packages?"