Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Index

## Installation Kivy and Buildozer on Ubuntu 18.04 based distros

The install-kivy-buildozer-dependencies.sh contains the complete list of the Buildozer dependencies. So the easiest way to install Buildozer is to use the install-kivy-buildozer-dependencies.sh.

1. Download the **install-kivy-buildozer-dependencies.sh** any way you like. E.g.

```curl -LJO https://raw.githubusercontent.com/HeaTTheatR/KivyMD-data/master/install-kivy-buildozer-dependencies.sh```

2. Add execution permissions:

```chmod +x install-kivy-buildozer-dependencies.sh```

3. Run the script:

```./install-kivy-buildozer-dependencies.sh```
8 changes: 7 additions & 1 deletion install-kivy-buildozer-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,17 @@ sudo apt install -y \
libltdl-dev \
libffi-dev \
libssl-dev \
automake \
autoconf \
autotools-dev
autotools-dev \
pkgconf \
libtool \
cmake

# Install Buildozer
mkdir ~/buildozer-repo
cd ~/buildozer-repo

git clone https://github.com/kivy/buildozer.git
cd buildozer
sudo python3 setup.py install