Skip to content

Instantly share code, notes, and snippets.

@mintisan
Forked from pcornier/Termux.Jupyter.md
Last active August 4, 2022 14:52
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 mintisan/32cd048152692d3c4f9716fb040c19b6 to your computer and use it in GitHub Desktop.
Save mintisan/32cd048152692d3c4f9716fb040c19b6 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