A straightforward guide to running Jupyter Lab on Android.
-
Update and Upgrade Termux
apt update -y && apt upgrade -y -
Install Python, Clang, Rust and Binutils
pkg i clang rust python3 binutils -y -
Create a
venvfor Jupyterpython3 -n venv jupyterAnd then activate it
source jupyter/bin/activateNote: I’m pretty sure you might be able to install it system wide as termux let’s you just
pip installstuff, though in general it is not a good idea. -
Upgrade pip and Install Required Packages
pip install --upgrade pippip install wheel cython -
Install ZeroMQ and PyZMQ
apt install libzmq -ypip install pyzmq -
Finally: Install Jupyter
pip install jupyter
Now you’re ready to go!