二进制安装

二进制安装

我正在尝试让 buildozer 工作(参见这里)。

当我按照说明操作时这里安装 aidl 时出现以下错误

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

有人可以帮忙吗?

答案1

让我们遵循pypibuildozer页面

我们可以使用以下选项之一 - 二进制或源安装。

二进制安装

我们需要:

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

然后检查它是否正常工作:

$ buildozer --version
Buildozer 0.39

源安装

我们需要:

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 .

然后检查它是否正常工作:

$ buildozer --version  
Buildozer 0.40.dev0

AIDL 已打包在所有 Ubuntu 版本中。你可以使用

sudo apt-get install aidl

相关内容