1.前言
Kivy是一个很优秀的,基于Python的GUI库,可以利用Python快速编程的特点,快速的编写windows, linux, mac, android, ios等主流平台的应用程序。同wxPython、PyQt相比,最大的优点是可以快速地编写移动应用程序
2.步骤
a) 安装kivy环境
b) 开发app
c) 打包exe,apk等
3.安装(https://www.kancloud.cn/gthank/kivydoc/127794)
以下仅介绍windows下开发环境安装
python3 -m pip install PyInstaller 用于打包
python3 -m pip install docutils pygments pypiwin32 kivy_deps.sdl2==0.1.* kivy_deps.glew==0.1.* 安装kivy环境
python3 -m pip install kivy_deps.gstreamer==0.1.*
python3 -m pip install kivy
4.注意
如果运行出错,请参考一下链接:
https://jingyan.baidu.com/article/db55b609bdd52d0aa20a2f56.html
https://cycleuser.gitbooks.io/kivy-guide-chinese/content/02-Kivy-Basics.html
https://www.cnblogs.com/cofear/p/10799243.html
https://www.kancloud.cn/gthank/kivydoc/127796