Leap Motion SDK - Python 3 module builder
Go to file
Neurotek 5b7c3ccbca
Fixing swig-3 command not found with Ubuntu 20.04 LTS
Hi,
The command swig for version 3 seem to not be working with the original syntax
I've managed to get it to work with this syntax swig3.0
2020-05-21 20:43:22 +02:00
.gitignore gitignore 2018-05-23 01:39:08 +02:00
Makefile Fixing swig-3 command not found with Ubuntu 20.04 LTS 2020-05-21 20:43:22 +02:00
README.md First commit 2018-05-23 01:33:47 +02:00

README.md

Leap Motion SDK Python 3 module builer

The Leap Motion Python module is not not officially compatible with Python 3.

This project aims to provide a simple and automated way to build and install your Python 3 module for the Leap Motion.

Dependencies

  • swig
  • g++
  • libpython3-dev (on Debian/Ubuntu)

Build the module

make

Install the module

[sudo] make install

PREFIX (where both libLeap.so and the Python bindings will be installed) points to /usr by default. Change it if required:

PREFIX=/your/local/prefix make install

Clean the source directory

make clean

Uninstall the module

[sudo] make uninstall