Kivy not working (Error: Unable to find any valuable Window provider.)

后端 未结 5 746
遇见更好的自我
遇见更好的自我 2020-11-28 09:51

I have been getting this error: Unable to find any valuable Window provider. With kivy heres the \"full\" error:

[INFO   ] [Logger      ] Record log in C:\\U         


        
相关标签:
5条回答
  • 2020-11-28 10:25

    Even i have faced same problem.

    Now it is working with conda install

    conda config --add channels conda-forge
    conda install kivy
    
    0 讨论(0)
  • 2020-11-28 10:42

    You're probably missing some dependencies. From the docs:

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

    python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew;

    python -m pip install kivy.deps.gstreamer

    To install these dependencies, open up a terminal (can be a console, Pycharm Terminal window, etc.), run the first command and then the second command.

    0 讨论(0)
  • 2020-11-28 10:44

    try to disable the 3D and the 2D video acceleration acceleration in the (>>display>> settings ) of the virtual software (aka vmbox, vmware).

    0 讨论(0)
  • 2020-11-28 10:46

    The solution above did not work for me. Here is what I had to do to solve the problem on my Windows 10 pc with Anaconda Python 3.6 installed:

    • open an Anaconda prompt window as administrator
    • pip uninstall kivy
    • pip install kivy
    • pip install docutils pygments pypiwin32 kivy.deps.sdl2
    • pip install kivy.deps.glew
    0 讨论(0)
  • 2020-11-28 10:46

    I had the same problem. I tried many suggested solutions in vain. It only worked when I uninstalled and reinstalled kivy.

    To uninstall:

        $ pip uninstall kivy
    

    To install:

        $ python -m pip install kivy==2.0.0rc1
    
    0 讨论(0)
提交回复
热议问题