2014-04-20 18:09:07 +02:00
|
|
|
Installation
|
|
|
|
============
|
|
|
|
|
|
|
|
Buildozer itself doesn't depend on any library, and works on Python 2.7 and >=
|
2015-10-04 12:44:29 +02:00
|
|
|
3.3. Depending the platform you want to target, you might need more tools
|
|
|
|
installed. Buildozer tries to give you hints or tries to install few things for
|
2014-04-21 14:11:35 +02:00
|
|
|
you, but it doesn't cover every situation.
|
2014-04-20 18:09:07 +02:00
|
|
|
|
|
|
|
First, install the buildozer project with::
|
|
|
|
|
|
|
|
pip install --upgrade buildozer
|
|
|
|
|
2014-04-21 14:11:35 +02:00
|
|
|
Targeting Android
|
|
|
|
-----------------
|
2014-04-20 18:09:07 +02:00
|
|
|
|
2015-10-04 12:44:29 +02:00
|
|
|
If you target Android, you must install at least Cython, few build libs, and a
|
|
|
|
Java SDK. Some binaries of the Android SDK are still in 32 bits, so you need
|
2014-04-21 14:11:35 +02:00
|
|
|
few 32bits libraries available::
|
|
|
|
|
2015-10-04 12:44:29 +02:00
|
|
|
Android on Ubuntu 14.10 (64bit)
|
2014-04-21 14:11:35 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
::
|
|
|
|
|
2015-10-04 12:44:29 +02:00
|
|
|
sudo pip install --upgrade cython==0.21
|
|
|
|
sudo dpkg --add-architecture i386
|
|
|
|
sudo apt-get update
|
2015-10-04 12:59:26 +02:00
|
|
|
sudo apt-get install build-essential ccache git lib32stdc++6 lib32z1 lib32z1-dev python2.7 python2.7-dev openjdk-7-jdk unzip zlib1g-dev
|
2014-04-21 14:11:35 +02:00
|
|
|
|
|
|
|
Android on Ubuntu 13.10 (64bit)
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
::
|
|
|
|
|
2015-10-04 12:44:29 +02:00
|
|
|
sudo pip install --upgrade cython==0.21
|
2014-04-21 14:11:35 +02:00
|
|
|
sudo dpkg --add-architecture i386
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install build-essential ccache git ia32-libs libncurses5:i386 libstdc++6:i386 python2.7 python2.7-dev openjdk-7-jdk unzip zlib1g-dev zlib1g:i386
|
2015-10-04 12:44:29 +02:00
|
|
|
|
|
|
|
Android on Ubuntu 12.04 (64bit)
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
sudo pip install --upgrade cython==0.21
|
|
|
|
sudo apt-get install build-essential ccache git ia32-libs python2.7 python2.7-dev openjdk-7-jdk unzip zlib1g-dev
|