Skip to content

Instantly share code, notes, and snippets.

@pcornier
Created August 8, 2017 12:43
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save pcornier/cd6ae8afe79b5d2fbf3288b56f38f563 to your computer and use it in GitHub Desktop.
Save pcornier/cd6ae8afe79b5d2fbf3288b56f38f563 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

pkg install scipy

pip install matplotlib

jupyter notebook
@richgoldberg
Copy link

With pip 10 I needed to add the --no-build-isolation flag on my android tablet to install pandas:
pip install pandas --no-build-isolation

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