标签:程序 sim 基于 国内源 tps doc hello 测试 python3
Kivy是一个很优秀的,基于Python的GUI库,可以快速开发移动端程序,方便应用于android, ios。
1、Kivy安装
Windows进入dos窗口,需要python3环境,且python3版本不能高于3.7.9,目前未支持python3.8
pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew
pip install kivy.deps.gstreamer
pip install kivy
ps : 如果安装过慢,可以使用清华镜像:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
单独配置国内源自行百度配置即可
2、安装官方示例
pip install kivy_examples
3、验证安装成功
from kivy.app import App from kivy.uix.button import Button class TestApp(App): def build(self): return Button(text=‘Hello, world..‘)
if __name__ == "__main__": TestApp().run()
测试运行上述程序。
4、使用:
。。。待续中
标签:程序 sim 基于 国内源 tps doc hello 测试 python3
原文地址:https://www.cnblogs.com/anthem/p/13570457.html