Skip to content Skip to sidebar Skip to footer

Pycharm With Kivy Error [critical] [app ] Unable To Get A Window, Abort

I am trying to get one of the example Kivy codes running on my machine. I am using the Pycharm community edition 2017.1 with anaconda python 2.7 and Kivy 1.9 installed. I have us

Solution 1:

This will definitely gonna do the trick:

pip install git+https://github.com/kivy/kivy.git@master

Solution 2:

when you using Window 7 32 bit system and see this error

try this:>> 1-> open cmd 2->python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew

Solution 3:

kivy uses pygame to create/ build a window so probably it's missing. try:

pip(3) install pygame

Solution 4:

Use this if you are using python3.x.x versions in Windows:

  • pip3 install pygame

Post a Comment for "Pycharm With Kivy Error [critical] [app ] Unable To Get A Window, Abort"