Running Jupyter Notebook on Android phone is doable. We will show you the steps to run Jupyter Notebook on your anroid phone.
Steps to follow
- You have Termux instslled
- Open Termux, then run the following commands in the prompt:
$ apt install clang python fftw libzmq freetype libpng pkg-config libcrypt
$ LDFLAGS="-lm -lcompiler_rt" pip install jupyter
- Optionally, you can also install other useful packages:
$ LDFLAGS="-lm -lcompiler_rt" pip install numpy matplotlib
- Finally, test the notebook by running:
$ jupyter notebook
Leave a Reply