1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
From a binary package
=====================
Python-evdev has been packaged for the following GNU/Linux distributions:
.. raw:: html
<div style="margin:1em;">
<a href="https://www.archlinux.org/packages/extra/x86_64/python-evdev/">
Arch Linux
</a>
<a href="https://packages.debian.org/search?searchon=names&keywords=python-evdev">
Debian
</a>
<a href="https://packages.ubuntu.com/search?suite=default§ion=all&arch=any&keywords=python-evdev&searchon=names">
Ubuntu
</a>
<a href="https://apps.fedoraproject.org/packages/python3-evdev">
Fedora
</a>
<!--
<a href="">Raspbian</a>
<a href="">Debian</a>
<a href="">Linux Mint</a>
<a href="">OpenSuse</a>
--!>
</div>
Consult the documentation of your OS package manager for installation instructions.
From source
===========
The latest stable version of *python-evdev* can be installed from pypi_,
provided that you have gcc/clang, pip_ and the Python and Linux development
headers installed on your system. Installing them is distribution specific and
typically falls in one of the following categories:
On a Debian compatible OS:
.. code-block:: bash
$ apt-get install python-dev python-pip gcc
$ apt-get install linux-headers-$(uname -r)
On a Redhat compatible OS:
.. code-block:: bash
$ yum install python-devel python-pip gcc
$ yum install kernel-headers-$(uname -r)
On Arch Linux and derivatives:
.. code-block:: bash
$ pacman -S core/linux-api-headers python-pip gcc
Once all dependencies are available, you may install *python-evdev* using pip_:
.. code-block:: bash
$ sudo pip install evdev # available globally
$ pip install --user evdev # available to the current user
Specifying header locations
===========================
By default, the setup script will look for the ``input.h`` and
``input-event-codes.h`` [#f1]_ header files ``/usr/include/linux``.
You may use the ``--evdev-headers`` option to the ``build_ext`` setuptools
command to specify the location of these header files. It accepts one or more
colon-separated paths. For example:
.. code-block:: bash
$ python setup.py build_ext \
--evdev-headers buildroot/input.h:buildroot/input-event-codes.h \
--include-dirs buildroot/ \
install # or any other command (e.g. develop, bdist, bdist_wheel)
.. [#f1] ``input-event-codes.h`` is found only in more recent kernel versions.
.. _pypi: http://pypi.python.org/pypi/evdev
.. _github: https://github.com/gvalkov/python-evdev
.. _pip: http://pip.readthedocs.org/en/latest/installing.html
.. _example: https://github.com/gvalkov/python-evdev/tree/master/examples
.. _`async/await`: https://docs.python.org/3/library/asyncio-task.html
|