59facf6e6f
* Cross compile wheel for armv7l (Raspberry Pi 4) using Github Actions CI Fixes #6567 * Added instruction on how to install Kivy on a Raspberry Pi 4 * Do not package the examples in the wheel * We can not upload armv7l wheels to PyPI * Remove all references to KivyPie * Merge the installations instructions for Raspberry Pi's together * Build the armv7l wheel on Stretch as well * Create a copy of the wheel with a armv6l suffix * The wheels are Raspberry Pi specific |
||
---|---|---|
.. | ||
sources | ||
Makefile | ||
README.md | ||
__init__.py | ||
autobuild.py | ||
doc-requirements.txt | ||
gallery.py |
README.md
Kivy - Documentation
You can access the latest documentation on the web:
Contributing
If you intend on editing and contributing documentation, assure the kivy source code is up to date before proceeding. If your documentation is outdated, it could result in merge conflicts.
Install Sphinx
-
With pip:
pip install sphinx
-
With apt-get:
apt-get install python-sphinx
-
With MacPorts:
port install py34-sphinx
-
On Windows (or from inside your virtualenv):
Get pip (https://pypi.python.org/pypi/pip). You'll use it to install the dependencies.
To install pip, run
python setup.py install
in the pip directory. Now run:pip install sphinxcontrib-blockdiag sphinxcontrib-seqdiag
pip install sphinxcontrib-actdiag sphinxcontrib-nwdiag
Or just use the provided doc-requirements.txt:
pip install -r doc-requirements.txt
Building the documentation
Generate documentation using make: make html
.
Documentation will be accessible in build/html/
.