我的Kivy应用程序没有显示正确的界面

时间:2014-02-21 17:28:56

标签: python-2.7 user-interface kivy

我目前正在学习如何使用kivy,我决定运行一个基础教程。我在我的系统上运行以下代码

import kivy
kivy.require('1.8.0') # replace with your current kivy version !

from kivy.app import App
from kivy.uix.label import Label


class MyApp(App):

    def build(self):
        return Label(text='Hello world')


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

显示的GUI是 enter image description here

enter image description here

用于显示上图。我的系统有什么问题?

0 个答案:

没有答案