Leap Motion SDK - Python 3 module builder
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Fabio Manganiello 9c2194d1b0
Made installation more portable and robust against different name of the swig executable
3 years ago
.gitignore gitignore 5 years ago
Makefile Made installation more portable and robust against different name of the swig executable 3 years ago
README.md First commit 5 years ago
build.sh Made installation more portable and robust against different name of the swig executable 3 years ago

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