1

I am trying to get buildozer working (see here).

when I follow the instructions here to install aidl, I get the following error

Could not find a version that satisfies the requirement aidl (from versions: )
No matching distribution found for aidl

Can someone please help?

N0rbert
  • 103,263
Psionman
  • 187
  • 2
  • 14

1 Answers1

1

Let us follow guide from pypi buildozer page.

We can use one of the options below - binary or source install.

Binary install

We need:

sudo apt-get install python-pip
sudo pip install buildozer paramiko # the latter is to fix warning about missied paramiko

Then check that it is working:

$ buildozer --version
Buildozer 0.39

Source install

We need:

cd ~/Downloads 
sudo apt-get install git python-pip
git clone https://github.com/kivy/buildozer
cd buildozer
python setup.py build
sudo pip install -e .

Then check that it is working:

$ buildozer --version  
Buildozer 0.40.dev0

AIDL is packaged in all Ubuntu releases. You can install it with

sudo apt-get install aidl
N0rbert
  • 103,263