Commit 27fa2e01 authored by Manuel Luis Alcazar Laynez's avatar Manuel Luis Alcazar Laynez
Browse files

Merge branch '3-fix-versions-in-requirements-txt' into 'clickable-image'

Fix current versions of libraries

See merge request !10
parents 163172a2 ca80b377
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -58,6 +58,20 @@ Install requirements:
pip install -r requirements.txt
```

 **NOTE:** The installation could fail with the next message if the package `libxt-dev` is not found in your OS:
```bash
xtloop.c:9:10: fatal error: X11/Intrinsic.h: No such file or directory
    9 | #include <X11/Intrinsic.h>
      |          ^~~~~~~~~~~~~~~~~
```
To solve that, you can install it with the following commands:

- openSUSE: `sudo zypper install libXt-devel`
- Debian / Ubuntu: `sudo apt-get install libxt-dev`
- Fedora: `sudo dnf install libXt-devel`

Then, run again: `pip install -r requirements.txt`

## Usage

To run the included example, execute the following command on the installation directory (with the activated enviroment):