Skip to content

Instantly share code, notes, and snippets.

@danvoronov
Forked from pcornier/Termux.Jupyter.md
Last active April 15, 2019 20:04
Show Gist options
  • Save danvoronov/e8d23b2ff1d2cb28423f0987ad0bc44e to your computer and use it in GitHub Desktop.
Save danvoronov/e8d23b2ff1d2cb28423f0987ad0bc44e to your computer and use it in GitHub Desktop.
Install Jupyter with Numpy, SciPy, Pandas and Matplotlib
pkg install apt-transport-https curl gnupg pkg-config clang
pkg install freetype freetype-dev libpng libpng-dev libzmq-dev libzmq

mkdir $PREFIX/etc/apt/sources.list.d

echo "deb [trusted=yes] https://its-pointless.github.io/files/ termux extras" > $PREFIX/etc/apt/sources.list.d/pointless.list

curl -O https://its-pointless.github.io/pointless.gpg

apt-key add pointless.gpg

pkg update

pkg install python python-dev

pip install jupyter

pkg install numpy

pip install pandas --no-build-isolation

pkg install scipy

pip install matplotlib

jupyter notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment