Skip to content Skip to sidebar Skip to footer

I'm Getting Error While Importing App From Kivy

I've installed Kivy some time ago, and since then I've tried many ways to run Kivy, but till today I'm not successful. I am able to 'import kivy' in python but while importing app

Solution 1:

Why are you trying to use a old version of kivy? Use the latest version 1.9.1. follow the documentation

Ensure you have the latest pip and wheel:

python -m pip install --upgrade pip wheel setup tools

. Install the dependencies (skip gstreamer (~90MB) if not needed, see Kivy’s dependencies):

python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew \ kivy.deps.gstreamer --extra-index-url https://kivy.org/downloads/packages/simple/

Install kivy:

python -m pip install kivy

That’s it. You should now be able to import kivy in python.

Post a Comment for "I'm Getting Error While Importing App From Kivy"