2014-02-18 12:53:15 +00:00
.. _installation_rpi:
Installation on Raspberry Pi
============================
2019-12-21 20:29:04 +00:00
Raspberry Pi 4 headless installation on Raspbian Buster
2020-01-08 23:27:12 +00:00
-------------------------------------------------------
2015-03-30 19:24:09 +00:00
2019-12-21 20:29:04 +00:00
#. If you have installed Raspbian with a desktop i.e. if you Raspberry Pi boot into a desktop environment, then you can skip to `Raspberry Pi 1-4 installation`_ .
2014-02-18 12:53:15 +00:00
2019-12-21 20:29:04 +00:00
If you are using Raspbian Lite, then you first need to install X::
sudo apt-get install xserver-xorg
#. Next install nodm from source, so it includes the following fix: `spanezz/nodm#1 <https://github.com/spanezz/nodm/pull/10> `_ ::
sudo apt-get install libpam0g-dev help2man libx11-dev debhelper
git clone https://github.com/slashblog/nodm.git
pushd nodm
git checkout d48a8f6266d3f464138e0e95b65896917c35c89f
wget http://deb.debian.org/debian/pool/main/n/nodm/nodm_0.13-5.debian.tar.xz
tar xf nodm_0.13-5.debian.tar.xz
sudo dpkg-buildpackage -us -uc -b
popd
sudo dpkg -i nodm_0.13-*_armhf.deb
sudo rm -rf nodm*
#. Now enable graphical login::
sudo systemctl set-default graphical.target
#. Create a small test app::
cat <<EOF > ~/app.py
from kivy.app import App
from kivy.uix.button import Button
class TestApp(App):
def build(self):
return Button(text='hello world')
if __name__ == '__main__':
TestApp().run()
EOF
#. It is recommend to use the the logger functionality instead of print statements: `<https://kivy.org/doc/stable/api-kivy.logger.html>`_ , so they show up in the log.
A small script can then be used to follow the latest log and restart the application by using the `` --restart `` argument::
2014-02-18 12:53:15 +00:00
2019-12-21 20:29:04 +00:00
#!/bin/bash -e
if [[ $* == * --restart* ]]; then
sudo service nodm restart
inotifywait -q ~/.kivy/logs -e create --format %w%f | xargs tail -f
else
ls -t -d ~/.kivy/logs/* | head -n1 | xargs tail -f
fi
Note that you need to install `inotify-tools` in order to use the restart functionality.
#. Configure nodm and start your app at boot::
# Has the same effect as calling 'sudo dpkg-reconfigure nodm'
sudo sh -c 'echo "NODM_ENABLED=true" > /etc/default/nodm'
sudo sh -c 'echo "NODM_USER=$SUDO_USER" >> /etc/default/nodm' # Note that the variable SUDO_USER is used
sudo sh -c 'echo "NODM_FIRST_VT='\''7'\''" >> /etc/default/nodm'
sudo sh -c 'echo "NODM_XSESSION=/etc/X11/Xsession" >> /etc/default/nodm'
sudo sh -c 'echo "NODM_X_OPTIONS='\''-nolisten tcp'\''" >> /etc/default/nodm'
sudo sh -c 'echo "NODM_MIN_SESSION_TIME=60" >> /etc/default/nodm'
sudo sh -c 'echo "NODM_X_TIMEOUT=300" >> /etc/default/nodm'
# Start the app using nodm
echo '#!/bin/bash' > ~/.xsession
echo 'export DISPLAY=:0.0' >> ~/.xsession
echo "python3 ~/app.py" >> ~/.xsession
#. Now simply follow the `Raspberry Pi 1-4 installation`_ instructions to install Kivy.
_`Raspberry Pi 1-4 installation` on Raspbian Jessie/Stretch/Buster
2020-01-08 23:27:12 +00:00
------------------------------------------------------------------
2019-06-13 22:41:30 +00:00
2015-10-23 22:37:36 +00:00
#. Install the dependencies::
2019-06-13 22:41:30 +00:00
sudo apt update
sudo apt install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev \
2015-10-23 22:37:36 +00:00
pkg-config libgl1-mesa-dev libgles2-mesa-dev \
2019-12-21 20:29:04 +00:00
python3-setuptools libgstreamer1.0-dev git-core \
2015-10-23 22:37:36 +00:00
gstreamer1.0-plugins-{bad,base,good,ugly} \
2019-12-21 20:29:04 +00:00
gstreamer1.0-{omx,alsa} python3-dev libmtdev-dev \
2019-06-13 22:41:30 +00:00
xclip xsel libjpeg-dev
2017-03-18 02:32:14 +00:00
2019-06-13 22:41:30 +00:00
#. Install pip dependencies:
2017-03-18 02:32:14 +00:00
2019-12-21 20:29:04 +00:00
.. parsed-literal ::
2015-10-23 22:37:36 +00:00
2019-12-21 20:29:04 +00:00
python3 -m pip install --upgrade --user pip setuptools
python3 -m pip install --upgrade --user |cython_install| pillow
2015-10-23 22:37:36 +00:00
2019-06-13 22:41:30 +00:00
#. Install Kivy to Python globally
2015-10-23 22:37:36 +00:00
2019-06-13 22:41:30 +00:00
You can install it like a normal python package with::
2015-10-23 22:37:36 +00:00
2019-06-13 22:41:30 +00:00
# to get the last release from pypi
2019-12-21 20:29:04 +00:00
python3 -m pip install --user kivy
2019-06-13 22:41:30 +00:00
# to install master
2019-12-21 20:29:04 +00:00
python3 -m pip install --user https://github.com/kivy/kivy/archive/master.zip
2019-06-13 22:41:30 +00:00
# or clone locally then pip install
2019-02-12 23:14:20 +00:00
git clone https://github.com/kivy/kivy
cd kivy
2019-12-21 20:29:04 +00:00
python3 -m pip install --user .
2019-02-12 23:14:20 +00:00
2019-06-13 22:41:30 +00:00
Or build and use kivy inplace in a editable install (best for development)::
2015-10-23 22:37:36 +00:00
git clone https://github.com/kivy/kivy
cd kivy
2017-10-15 16:06:36 +00:00
2019-12-21 20:29:04 +00:00
python3 -m pip install --user -e .
2019-06-13 22:41:30 +00:00
# every time you change any cython files remember to manually call:
2015-10-23 22:37:36 +00:00
make
2019-06-13 22:41:30 +00:00
# or to recompile all files
make force
2017-10-15 16:06:36 +00:00
2020-01-08 23:27:12 +00:00
It is also possible to use a precompiled wheel. The precompiled wheel can be downloaded from the latest `release <https://github.com/kivy/kivy/releases> `_ . A wheel is also automatically build daily and can be downloaded here: `<https://kivy.org/downloads/ci/raspberrypi/kivy>`_ .
2019-12-21 20:29:04 +00:00
2019-12-23 22:08:22 +00:00
First install the wheel dependency::
2019-12-21 20:29:04 +00:00
python3 -m pip install --upgrade --user wheel
2019-12-23 22:08:22 +00:00
2020-01-08 23:27:12 +00:00
Now simply install the wheel::
2019-12-23 22:08:22 +00:00
2020-01-08 23:27:12 +00:00
python3 -m pip install --user *armv7l.whl
2019-12-23 22:08:22 +00:00
2020-01-08 23:27:12 +00:00
It is also possible to install the latest development version like so::
2019-12-23 22:08:22 +00:00
2020-01-08 23:27:12 +00:00
python3 -m pip install --pre --user --extra-index-url https://kivy.org/downloads/simple kivy[base]
2019-12-21 20:29:04 +00:00
2018-02-07 03:58:08 +00:00
.. note ::
On versions of kivy prior to 1.10.1, Mesa library naming changes can result
in "Unable to find any valuable Window provider" errors. If you experience
this issue, please upgrade or consult `ticket #5360.
<https://github.com/kivy/kivy/issues/5360>`_
2015-10-23 22:37:36 +00:00
2020-01-11 00:21:35 +00:00
Raspberry Pi window provider and GL backend
-------------------------------------------
By default the Raspberry Pi 1-3 will use the `` egl_rpi `` window provider and the `` gl `` GL backend.
Since the `` egl_rpi `` window provider is not available on the Raspberry Pi 4 it uses the `` sdl2 `` window provider and the `` sdl2 `` GL backend by default.
The window provider and GL backend can be changed at runtime by setting the `KIVY_WINDOW`_ and `KIVY_GL_BACKEND`_ environmental variables.
The table below shows the supported combinations of window provider and GL backend on the 4 platforms:
+------------------------------------+-----------------------------------+-------+-------+-------+-------+
| Window provider (`KIVY_WINDOW`_ \=) | GL backend (`KIVY_GL_BACKEND`_ \=) | RPi 1 | RPi 2 | RPi 3 | RPi 4 |
+====================================+===================================+=======+=======+=======+=======+
| sdl2 | sdl2/gl | y | y | y | y |
+------------------------------------+-----------------------------------+-------+-------+-------+-------+
| x11 | gl | y | y | y | y |
+------------------------------------+-----------------------------------+-------+-------+-------+-------+
| egl_rpi | gl | y | y | y | n |
+------------------------------------+-----------------------------------+-------+-------+-------+-------+
.. _KIVY_WINDOW: https://kivy.org/doc/stable/guide/environment.html#restrict-core-to-specific-implementation
.. _KIVY_GL_BACKEND: https://kivy.org/doc/stable/guide/environment.html#restrict-core-to-specific-implementation
2019-12-21 20:29:04 +00:00
Installation on Raspbian Wheezy
2016-06-19 05:51:40 +00:00
----------------------------------------
2014-02-18 12:53:15 +00:00
#. Add APT sources for Gstreamer 1.0 in `/etc/apt/sources.list` ::
deb http://vontaene.de/raspbian-updates/ . main
2015-03-30 19:24:09 +00:00
#. Add APT key for vontaene.de::
gpg --recv-keys 0C667A3E
gpg -a --export 0C667A3E | sudo apt-key add -
2015-09-14 11:28:29 +00:00
2014-02-18 12:53:15 +00:00
#. Install the dependencies::
sudo apt-get update
2015-10-23 22:37:36 +00:00
sudo apt-get install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev \
pkg-config libgl1-mesa-dev libgles2-mesa-dev \
2019-12-21 20:29:04 +00:00
python3-setuptools libgstreamer1.0-dev git-core \
2014-12-25 18:13:04 +00:00
gstreamer1.0-plugins-{bad,base,good,ugly} \
2019-12-21 20:29:04 +00:00
gstreamer1.0-{omx,alsa} python3-dev
2014-02-18 12:53:15 +00:00
#. Install pip from source::
wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py
2019-12-21 20:29:04 +00:00
sudo python3 get-pip.py
2014-02-18 12:53:15 +00:00
2018-06-17 16:41:31 +00:00
#. Install Cython from sources (debian packages are outdated):
2019-12-21 20:29:04 +00:00
.. parsed-literal ::
2014-02-18 12:53:15 +00:00
2019-12-21 20:29:04 +00:00
sudo pip install |cython_install|
2014-02-18 12:53:15 +00:00
2015-10-23 22:37:36 +00:00
#. Install Kivy globally on your system::
2014-02-18 12:53:15 +00:00
2015-10-23 22:37:36 +00:00
sudo pip install git+https://github.com/kivy/kivy.git@master
2014-02-18 12:53:15 +00:00
2015-10-23 22:37:36 +00:00
#. Or build and use kivy inplace (best for development)::
2014-02-18 12:53:15 +00:00
2015-10-23 22:37:36 +00:00
git clone https://github.com/kivy/kivy
cd kivy
2017-10-15 16:06:36 +00:00
2014-02-18 12:53:15 +00:00
make
echo "export PYTHONPATH=$(pwd):\$PYTHONPATH" >> ~/.profile
source ~/.profile
2019-12-21 20:29:04 +00:00
Installation on Arch Linux ARM
2018-11-08 15:59:58 +00:00
------------------------------------------------
#. Install the dependencies::
sudo pacman -Syu
sudo pacman -S sdl2 sdl2_gfx sdl2_image sdl2_net sdl2_ttf sdl2_mixer python-setuptools
Note: python-setuptools needs to be installed through pacman or it will result with conflicts!
#. Install pip from source::
2019-06-25 14:12:50 +00:00
wget https://bootstrap.pypa.io/get-pip.py
or curl -O https://bootstrap.pypa.io/get-pip.py
2018-11-08 15:59:58 +00:00
sudo python get-pip.py
#. Install a new enough version of Cython:
2019-12-21 20:29:04 +00:00
.. parsed-literal ::
2018-11-08 15:59:58 +00:00
2019-12-21 20:29:04 +00:00
sudo pip install -U |cython_install|
2018-11-08 15:59:58 +00:00
#. Install Kivy globally on your system::
sudo pip install git+https://github.com/kivy/kivy.git@master
#. Or build and use kivy inplace (best for development)::
git clone https://github.com/kivy/kivy
cd kivy
2019-01-05 17:34:52 +00:00
python setup.py install
2018-11-08 15:59:58 +00:00
Images to use::
2019-12-21 20:29:04 +00:00
http://raspex.exton.se/?p=859 (recommended)
2018-11-08 15:59:58 +00:00
https://archlinuxarm.org/
.. note ::
On versions of kivy prior to 1.10.1, Mesa library naming changes can result
in "Unable to find any valuable Window provider" errors. If you experience
this issue, please upgrade or consult `ticket #5360.
<https://github.com/kivy/kivy/issues/5360>`_
2014-02-18 12:53:15 +00:00
Running the demo
----------------
Go to your `kivy/examples` folder, you'll have tons of demo you could try.
You could start the showcase::
cd kivy/examples/demo/showcase
2019-12-21 20:29:04 +00:00
python3 main.py
2014-02-18 12:53:15 +00:00
3d monkey demo is also fun too see::
cd kivy/examples/3Drendering
2019-12-21 20:29:04 +00:00
python3 main.py
2014-02-18 12:53:15 +00:00
2015-09-14 11:28:29 +00:00
Change the default screen to use
--------------------------------
You can set an environment variable named `KIVY_BCM_DISPMANX_ID` in order to
change the display used to run Kivy. For example, to force the display to be
HDMI, use::
2019-12-21 20:29:04 +00:00
KIVY_BCM_DISPMANX_ID=2 python3 main.py
2015-09-14 11:28:29 +00:00
2016-06-19 05:51:40 +00:00
Check :ref: `environment` to see all the possible values.
2014-02-18 12:53:15 +00:00
2015-09-22 13:32:48 +00:00
Using Official RPi touch display
--------------------------------
If you are using the official Raspberry Pi touch display, you need to
configure Kivy to use it as an input source. To do this, edit the file
`` ~/.kivy/config.ini `` and go to the `` [input] `` section. Add this:
::
mouse = mouse
mtdev_%(name)s = probesysfs,provider=mtdev
hid_%(name)s = probesysfs,provider=hidinput
For more information about configuring Kivy, see :ref: `configure kivy`
2014-02-18 12:53:15 +00:00
Where to go ?
-------------
We made few games using GPIO / physical input we got during Pycon 2013: a
button and a tilt. Checkout the https://github.com/kivy/piki. You will need to
adapt the GPIO pin in the code.
A video to see what we were doing with it:
http://www.youtube.com/watch?v=NVM09gaX6pQ