Skip to content

Installation on Termux

302ye edited this page Apr 20, 2021 · 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
pkg install libffi
pkg install clang
pkg install python
pkg install openssl
pkg install rust

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

pip install buku
Clone this wiki locally