Skip to content

Instantly share code, notes, and snippets.

@IronistM
Forked from pcornier/Termux.Jupyter.md
Created January 3, 2018 12:26
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 IronistM/7981dec68175fa6bc63b61b3f93026e3 to your computer and use it in GitHub Desktop.
Save IronistM/7981dec68175fa6bc63b61b3f93026e3 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment