Python Kivy 不工作(错误:无法找到任何有价值的 Window 提供程序。)
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/44219563/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Kivy not working (Error: Unable to find any valuable Window provider.)
提问by Victor Ocampo
I have been getting this error: Unable to find any valuable Window provider. With kivy heres the "full" error:
我一直收到此错误:无法找到任何有价值的 Window 提供程序。使用 kivy 这里是“完整”错误:
[INFO ] [Logger ] Record log in C:\Users\Victor\.kivy\logs\kivy_17-
05-27_10.txt
[INFO ] [Kivy ] v1.10.0
[INFO ] [Python ] v3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 17:54:52) [MSC
v.1900 32 bit (Intel)]
[INFO ] [Factory ] 194 symbols loaded
[INFO ] [Image ] Providers: img_tex, img_dds, img_pil, img_gif
(img_sdl2, img_ffpyplayer ignored)
[INFO ] [Text ] Provider: pil(['text_sdl2'] ignored)
[CRITICAL] [Window ] Unable to find any valuable Window provider.
sdl2 - ImportError: DLL load failed: The specified module could not be
found.
File "C:\Users\Victor\Desktop\lib\site-packages\kivy\core\__init__.py", line
59, in core_select_lib
fromlist=[modulename], level=0)
File "C:\Users\Victor\Desktop\lib\site-
packages\kivy\core\window\window_sdl2.py", line 26, in <module>
from kivy.core.window._window_sdl2 import _WindowSDL2Storage
[CRITICAL] [App ] Unable to get a Window, abort.
Exception ignored in: 'kivy.properties.dpi2px'
Traceback (most recent call last):
File "C:\Users\Victor\Desktop\lib\site-packages\kivy\utils.py", line 496, in __get__
retval = self.func(inst)
File "C:\Users\Victor\Desktop\lib\site-packages\kivy\metrics.py", line 174, in dpi
EventLoop.ensure_window()
File "C:\Users\Victor\Desktop\lib\site-packages\kivy\base.py", line 127, in ensure_window
sys.exit(1)
SystemExit: 1
[CRITICAL] [App ] Unable to get a Window, abort.
thats the error and heres the code:
这就是错误,代码如下:
import kivy #added this just in case
from kivy.app import App
from kivy.uix.label import Label
class SimpleKivy(App):
def build(self):
return Label(text="Hello World!!!")
if __name__ == "__main__":
SimpleKivy().run()
Can someone explain this error
有人可以解释这个错误吗
回答by Edvardas Dlugauskas
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
安装依赖项(如果不需要,请跳过 gstreamer (~120MB),参见 Kivy 的依赖项):
python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew
;python -m pip install kivy.deps.gstreamer
.....
.....
回答by Jean-Pierre Schnyder
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:
上面的解决方案对我不起作用。以下是我在安装了 Anaconda Python 3.6 的 Windows 10 电脑上解决问题所必须做的:
- 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
- 以管理员身份打开 Anaconda 提示窗口
- pip 卸载 kivy
- pip 安装 kivy
- pip 安装 docutils pygments pypiwin32 kivy.deps.sdl2
- pip 安装 kivy.deps.glew
回答by Mallikarjun Dodmani
Even i have faced same problem.
即使我也遇到过同样的问题。
Now it is working with conda install
现在它正在使用 conda install
conda config --add channels conda-forge
conda install kivy
回答by Mahmoud Harb
try to disable the 3D and the 2D video acceleration acceleration in the (>>display>> settings ) of the virtual software (aka vmbox, vmware).
尝试在虚拟软件(又名 vmbox、vmware)的(>>显示>>设置)中禁用 3D 和 2D 视频加速加速。