Skip to content

[Solved] Unable to get a Text provider, abort—— kivy

Last Updated on 2020-04-22 by Clay

Introduction

kivy is a famous package in Python. If You want to learn more skill in kivy, maybe you can refer the kivy official website:

https://kivy.org/doc/stable/tutorials-index.html


Problem Introduction

"[CRITICAL] [App ] Unable to get a Text provider, abort". The above error is the most common pit when you first started using the kivy suite. This error is mostly caused by the incomplete installation kit.


Solution

pip install --upgrade pip wheel setuptools
pip install docutils pygments pypiwin32 kivy-deps.sdl2 kivy-deps.glew
pip install kivy-deps.gstreamer
pip install kivy-deps.angle
pip install –-upgrade kivy

Enter the command from terminal, install the missing package, and execute your program again.

If you are using an IDE such as pycharm, then we go to Files -> settings -> Project Interpreter -> install -> search for "kivy-deps", and then download all the packages without "dev" in the suffix.

Like this.

If you look your program again, most of the programs are no problem.

Tags:

Leave a ReplyCancel reply

Exit mobile version