Skip to content

Instantly share code, notes, and snippets.

@logkcal
Created September 3, 2017 10:33
Show Gist options
  • Save logkcal/41591d1233503369e035b6ebeffc7e47 to your computer and use it in GitHub Desktop.
Save logkcal/41591d1233503369e035b6ebeffc7e47 to your computer and use it in GitHub Desktop.
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
@logkcal
Copy link
Author

logkcal commented Sep 3, 2017

c.NotebookApp.ip = '0.0.0.0' # listen on all IPs
c.NotebookApp.token = '' # disable authentication
c.NotebookApp.allow_origin = '*' # allow access from anywhere
c.NotebookApp.disable_check_xsrf = True # allow cross-site requests

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