termux安装python图形库_Termux安装Jupyter、Pandas、Matplotlib(2021,Python 3.9)

# 剧透:

# 手机是armv7(32位)的中低端机,未root

# python 3.9

# 成功安装了numpy + scipy + matplotlib + pandas + jupyter + scikit-learn

# ===============================================

# 2020.11.27

# 毕竟年初和年底的Termux已经很不一样了

# 现在已经年底了,就写成2021

# play商店里崭新出厂的原生 Termux 0.101

pkg update && pkg upgrade

pkg install python

# 以下是安装过程

# 先添加仓库

# 是英文字母O,不是0

curl -LO https://its-pointless.github.io/setup-pointless-repo.sh

bash setup-pointless-repo.sh

# numpy scipy 直接从这个仓库里装,很方便

pkg install numpy scipy

# matplotlib / jupyter的依赖项,

# 好像是字体和图片处理相关

pkg install libpng freetype

# wheel 是重要的依赖项

pip install wheel

# 安装 matplotlib 的依赖

pip install kiwisolver cycler

pip install pyparsing python-dateutil

# matplotlib依赖pillow

# 安装pillow的依赖项

pkg install libjpeg-turbo libtiff

pkg install littlecms tk libwebp

# 安装 matplotlib

pip install matp

你可能感兴趣的:(termux安装python图形库_Termux安装Jupyter、Pandas、Matplotlib(2021,Python 3.9))