Kivy App崩溃:"没有回应"

时间:2016-07-12 08:57:03

标签: python visual-studio python-2.7 kivy

我想使用kivy制作应用。我安装了 python 2.7 kivy 1.9.1

我使用this link来安装kivy。

我正在关注this tutorial制作 Hello World 应用。

我正在使用Visual Studio 2015。

当我运行程序时,首先,控制台出现后,另一个黑色窗口显示文本" Hello World!"。问题是当我点击第二个黑色窗口时,变得更白并说"没有响应" 。我还使用kivy再次尝试使用另一个登录应用程序。当我尝试填充TextInput时,它再次变得更白,说不响应所以我不能使用我的程序。

enter image description here

以下是崩溃的代码:

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


class SampleKivy(App):
    def build(self):
        return Label(text="Hello world")



SampleKivy().run()

如果上一个链接中存在安装问题,我还使用pip install "Kivy-1.9.1+sdl2-cp27-none-win_amd64.whl"命令安装了kivy。

In this tutorial这家伙没有这个问题,他的窗户似乎很好。

我可以在没有问题的情况下使用Visual Studio for asp.net。

(此代码没有这个问题而且没有崩溃:print "hello"这让我觉得问题与kivy有关)

提前致谢。

1 个答案:

答案 0 :(得分:1)

问题最终得以解决。我应该安装64位的Python 2.7.12,但我的版本是2.7位64位。更改python版本后,它工作了! :)