Closed dominikstrb closed 4 years ago
The SDK is build against swig3
. Unfortunately, swig3
has recently been removed from the Arch repo and now only versions >=4 are supported on Arch.
To make things work you can either:
Install a previous swig3
from the Arch Linux archive - and make sure that it doesn't conflict with the system swig
and it's built against the same libc.
If that doesn't work, build swig3
from sources.
Then change build.sh
so that $SWIG
points to the swig3
executable instead of swig
.
Thank you for the quick answer!
Hi @BlackLight
thank you very much for making this easy to install Python 3 SDK for the Leap Motion available! When I am trying to run a script that only contains
import Leap
, I am getting the following error:I am guessing that this could be due to the wrong version of
swig
installed on my system (Arch linux currently has4.0.2.1
). Do you have any idea how I could fix this?Thanks, Dominik