Kivy error, [CRITICAL] [Text ] unable to find any valuable text provider (python 3.6.1) (windows 10)

Solution 1:

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

This will solve all that issue

Solution 2:

In PyCharmm in the Project Interpreter, add all the packages that start with:

kivy-deps.

With the exclusion of the ones with "dev" in the title

Solution 3:

According to the source code

if 'KIVY_DOC' not in os.environ:
    if not Label:
        from kivy.logger import Logger
        import sys
        Logger.critical('App: Unable to get a Text provider, abort.')
        sys.exit(1)

Make sure you have installed all the dependencies according to installation guide.

Solution 4:

I was facing this problem, then I did this... ( This is for people using pycharm and installed all packages but still not working)

In settings->Project Interpreter ->Green Plus Icon to install package

Then search for "kivy.deps.sdl2", and install.

I hope this helps.