When trying to run the following program on my computer:
JavaScript
x
8
1
# First import an App class from kivy
2
from kivy.app import App
3
# Define App subclass
4
class TutorialApp(App):
5
pass
6
if __name__=="__main__":
7
TutorialApp().run()
8
After I added what was suggested( The last two lines ), I get two syntax errors, the first telling me to delete the colon and the second telling me to remove the indent, and then this:
JavaScript
1
19
19
1
[INFO ] Kivy v1.8.0
2
[INFO ] [Logger ] Record log in C:Usersrabbitrabbit.kivy logskivy_14-08-15_5.txt
3
[INFO ] [Factory ] 157 symbols loaded
4
[DEBUG ] [Cache ] register <kv.lang> with limit=None, timeout=Nones
5
[DEBUG ] [Cache ] register <kv.image> with limit=None, timeout=60s
6
[DEBUG ] [Cache ] register <kv.atlas> with limit=None, timeout=Nones
7
[INFO ] [Image ] Providers: img_tex, img_dds, img_gif (img_pygame, img_pil ignored)
8
[DEBUG ] [Cache ] register <kv.texture> with limit=1000, timeout=60s
9
[DEBUG ] [Cache ] register <kv.shader> with limit=1000, timeout=3600s
10
[DEBUG ] [App ] Loading kv <C:Python33tutorial.kv>
11
[DEBUG ] [App ] kv <C:Python33tutorial.kv> not found
12
[DEBUG ] [Window ] Ignored <egl_rpi> (import error)
13
[DEBUG ] [Window ] Ignored <pygame> (import error)
14
[WARNING ] [WinPygame ] SDL wrapper failed to import!
15
[DEBUG ] [Window ] Ignored <sdl> (import error)
16
[DEBUG ] [Window ] Ignored <x11> (import error)
17
[CRITICAL ] [Window ] Unable to find any valuable Window provider at all!
18
[CRITICAL ] [App ] Unable to get a Window, abort.
19
According to the tutorial I’m following( http://inclem.net/2014/01/09/kivy-crash-course/1_making-a-simple-app/ ), the program should be able to run without problems. I’ve installed Kivy and Python 3.3.
Advertisement
Answer
Looks like you’re missing an install of pygame
– it’s not pulled in as a dependency by the Kivy install so you need to install it separately — see http://kivy.org/docs/installation/troubleshooting-macosx.html#unable-to-find-any-valuable-window-provider-error