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
  • 99,918
Psionman
  • 185
  • 1
  • 12

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
  • 99,918
  • Thank you. Buildozer is installed and buildozer --version gives Buildozer 0.39. The problem seems to be aidl when I try ro run buildozer – Psionman Apr 28 '19 at 15:06
  • AIDL is packaged in all Ubuntu releases. You can install it with sudo apt-get install aidl. – N0rbert Apr 28 '19 at 16:51