pip install kivy
pip install Cython
from kivy.app import App
from kivy.uix.button import Button
class helloworld(App):
def build(self):
return Button(text='hello world')
helloworld().run()
重新安装
pip install --upgrade pip wheel setuptools
pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew
pip install kivy.deps.gstreamer
pip install kivy.deps.angle
pip install kivy
参考:https://www.e-learn.cn/content/wangluowenzhang/186622
到此已可以创建一个最简单的窗口程序,但是它是windows程序,要打包为安卓应用,还需要buildozer模块
有两种方法,一种是buildozer,还有一种是python-for-android
buildozer在windows平台下可能会出现错误,最好在win10内置的ubuntu子系统内编译。
每次都要复制已经打包成功的项目目录下的.buildozer到要打包的项目目录下,buildozer才不会重复下载sdk和ndk等。而.buildozer目录通常在1G以上。
打开cmd输入下面的命令
# 安装buildozr
pip install buildozer
# 切换到main.py文件所在目录
cd cd /mnt/c/Users/用户名/Documents/GitHub/工作文件夹
#生成一个.spec文件,里面是app的各种信息
buildozer init
# 编译
buildozer android debug deploy run
使用python3和pip3 应把数字带上。
#安装kivy
pip3 install kivy
pip3 install Cython
#安装 buildozer
pip3 install buildozer
# 切换到main.py文件所在目录
cd cd /mnt/c/Users/用户名/Documents/GitHub/工作文件夹
#生成一个.spec文件,里面是app的各种信息
buildozer init
# 编译
buildozer android debug deploy run
You can also package directly with python-for-android, which can give you more control but requires you to manually download parts of the Android toolchain.
# 安装p4a
pip install python-for-android
p4a has several dependencies that must be installed: