Improving and Building the Documentation¶
PyInstaller’s documentation is created using Sphinx. Sphinx uses reStructuredText as its markup language, and many of its strengths come from the power and straightforwardness of reStructuredText and its parsing and translating suite, the Docutils.
The documentation is maintained in the Git repository along with the code
and pushing to the develop
branch will create
a new version at https://pyinstaller.readthedocs.io/en/latest/.
For small changes (like typos) you may just fork PyInstaller on Github, edit the documentation online and create a pull-request.
For anything else we ask you to clone the repository and verify your changes like this:
pip install sphinx sphinx_rtd_theme
cd doc
make html
xdg-open _build/html/index.html
Please watch out for any warning and error while building the documentation. In your browser check if the markup is
Prior to pushing your changes and creating the pull-request please run:
make clean html
to verify once again everything is fine. Thank you!
We may ask you to rework your changes or reword your commit messages. In this
case, use git rebase -i …
and git push -f …
to update your
pull-request. See Updating a Pull-Request for details.
PyInstaller extensions¶
For the PyInstaller documentation there are roles available [*] in additon to the ones from Sphinx and docutils.
reStructuredText Cheat-sheet¶
Combining markup and links:
The easies way to install PyInstaller is using |pip|_:: .. |pip| replace:: :command:`pip` .. _pip: https://pip.pypa.io/