PYTHON 是 3.5.3


pip install cython

pip install pygame

pip install pypiwin32

pip install pillow

pip install kivy

pip install kivy.deps.sdl2

pip install docutils pygments kivy.deps.glew



##main.py####################################

import kivy
kivy.require('1.10.0')
from kivy.app import App
from kivy.uix.label import Label
from kivy.uix.button import Button
class MyApp(App):
    def build(self):
        return Button(text='hello world')


if __name__=='__main__':
    MyApp().run()

##main.py####################################



KIVY安装

相关文章:

  • 2022-12-23
  • 2021-06-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2021-06-23
猜你喜欢
  • 2021-12-24
  • 2022-12-23
  • 2021-07-13
  • 2022-12-23
  • 2022-12-23
  • 2021-10-17
  • 2021-04-07
相关资源
相似解决方案