换清华源(提高国内下载速度)

sed -i 's@^\(deb.*stable main\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/apt/termux-main stable main@' $PREFIX/etc/apt/sources.list

更新软件列表

apt update

安装相关软件

apt install android-tools termux-api

给Termux访问存储空间的权限

termux-setup-storage

安装python

pkg install python

验证是否安装成功

python --version # 应显示 Python 3.12.10

clang --version # 应显示 Clang 20.1.6

pip --version # 应显示 pip 25.1.1

设置python虚拟环境

python -m venv myenv

安装常用开发工具

pip install numpy pandas

清理缓存

apt clean