No module named 'Kivy' even though I installed it
问题 I've installed Kivy and all the need files as far as I know, but I'm still getting this error message and I don't know why. from kivy.app import App from kivy.uix.gridlayout import GridLayout class Container(GridLayout): pass class MainApp(App): def build(self): self.title = 'Awesome app!!!' return Container() if __name__ == "__main__": app = MainApp() app.run() This is the error message I get: Traceback (most recent call last): File "C:\Users\Yassi\OneDrive\Afbeeldingen\Bureaublad\main.py",