Skip to content

Instantly share code, notes, and snippets.

@michaaels
Forked from gatopeich/install_Jupyter.sh
Last active September 10, 2022 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaaels/2b1173b4fb3e75debb533e19f04e88aa to your computer and use it in GitHub Desktop.
Save michaaels/2b1173b4fb3e75debb533e19f04e88aa to your computer and use it in GitHub Desktop.
Install Jupyter iPython Notebook on Android via Termux
pkg upgrade
# Install runtime deps
pkg install python libzmq libcrypt libxml2 libxslt libiconv
# Add build deps
pkg install clang
pip3 install -U pip
pip3 install pyzmq --install-option="--zmq=/usr/lib"
pip3 install jupyter
# Remove build deps and pip cache
apt remove clang
apt autoremove
rm .cache ../usr/var/cache -rf
#TODO: Clean up ~200 mb pulled by build...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment