Skip to content Skip to sidebar Skip to footer

Buildozer Error, Calledprocesserror (kivy)

I have following error while running buildozer android debug deploy run (Ubuntu 64 14.04 on VirtualBox): Traceback (most recent call last): File 'build.py', line 491, in

Solution 1:

Run buildozer --verbose android debug and paste the full output. Though at a guess, this is because you lack 32 bit libraries. If so, you need something like

sudo dpkg --add-architecture i386
sudo apt-get-qqy update
sudo apt-get-qqy install libncurses5:i386 libstdc++6:i386 zlib1g:i386

If this doesn't work, you should look for the right way to install these packages in your version of ubuntu, I don't remember what version this example is for.

Post a Comment for "Buildozer Error, Calledprocesserror (kivy)"