Skip to content

Installation on Termux

maxigaz edited this page Jun 9, 2019 · 6 revisions

To install Buku on Termux, you need to have a working Python environment, the package manager pip, and several build dependencies installed.

Run the following commands to install Python and pip:

pkg install python
pkg install pip

Build dependencies (you may receive various build errors if you don't install these manually):

pkg install libcrypt-dev
pkg install libffi-dev
pkg install clang
pkg install python-dev
pkg install openssl-dev

Finally, run the following, which should install any remaining dependencies together with Buku itself:

pip install buku
Clone this wiki locally