I have installed Python and Kivy to Windows 7. Now there's a program:
from kivy.app import App
from kivy.uix.button import Button
class TestApp(App):
def build(self):
return Button(text='Hello World')
TestApp().run()
When I try to run it I get the following error:
Traceback (most recent call last):
File "E:\python\app1.py", line 1, in <module>
from kivy.app import App
File "E:\python\kivy.py", line 1, in <module>
from kivy.app import App
ModuleNotFoundError: No module named 'kivy.app'; 'kivy' is not a package