• Home
  • About
    • 康青旭 - Germán Caggianese photo

      康青旭 - Germán Caggianese

      Refactoring entropy in my Mind

    • Learn More
    • Email
    • Instagram
    • Github
    • Codeberg   Codeberg
  • All Posts
  • Projects
  • Areas
  • Resources

Jupyter Lab on Termux

30 Sep 2025

Reading time ~2 minutes

A straightforward guide to running Jupyter Lab on Android.

  1. Update and Upgrade Termux

    apt update -y && apt upgrade -y
    
  2. Install Python, Clang, Rust and Binutils

    pkg i clang rust python3 binutils -y
    
  3. Create a venv for Jupyter

    python3 -n venv jupyter
    

    And then activate it

    source jupyter/bin/activate
    

    Note: I’m pretty sure you might be able to install it system wide as termux let’s you just pip install stuff, though in general it is not a good idea.

  4. Upgrade pip and Install Required Packages

    pip install --upgrade pip
    
    pip install wheel cython
    
  5. Install ZeroMQ and PyZMQ

    apt install libzmq -y
    
    pip install pyzmq
    
  6. Finally: Install Jupyter

    pip install jupyter
    

Now you’re ready to go!

Unless stated otherwise, the content of the website is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

© 2025 Germán Caggianese(康青旭)