This is my first post here. I am a beginner at programming with Python so please be specefic with your awnsers :)
So when I try to run a simple script to create a window it gives the error 'Unable to get a Window, abort' I looked at other posts and tried to apply the sulutions given there but nothing seems to work. I am running it on windows 10 through Pycharm.
this is the code im trying to run:
from kivy.app import App
class app(App):
pass
if __name__ == '__main__':
App().run()