python配置Windows下kivy开发环境
2021-03-31 03:27
标签:程序 sim 基于 国内源 tps doc hello 测试 python3 Kivy是一个很优秀的,基于Python的GUI库,可以快速开发移动端程序,方便应用于android, ios。 1、Kivy安装 Windows进入dos窗口,需要python3环境,且python3版本不能高于3.7.9,目前未支持python3.8 ps : 如果安装过慢,可以使用清华镜像:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package 单独配置国内源自行百度配置即可 2、安装官方示例 3、验证安装成功 测试运行上述程序。 4、使用: 。。。待续中 python配置Windows下kivy开发环境 标签:程序 sim 基于 国内源 tps doc hello 测试 python3 原文地址:https://www.cnblogs.com/anthem/p/13570457.htmlpip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew
pip install kivy.deps.gstreamer
pip install kivy
pip install kivy_examples
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()
文章标题:python配置Windows下kivy开发环境
文章链接:http://soscw.com/index.php/essay/70280.html