kivy在虚拟环境中,窗口提供程序错误(linux)

时间:2017-01-07 14:58:19

标签: python linux virtualenv kivy conda

我试图让kivy framework在带有anaconda python的Ubuntu 16.04 LTS机器上运行。

我已遵循virtualenv和conda virtualenv环境中提供的here安装说明。

在这两种环境中,我遇到了同样的问题。当试图用python file.py运行一个kivy程序时,我得到(以及其他)以下消息并且程序没有执行:

    [INFO   ] [Kivy        ] v1.9.1
    [INFO   ] [Python      ] v2.7.12 (default, [...]) 
    [GCC 5.4.0 ...]
    [INFO   ] [Factory     ] 179 symbols loaded
    [INFO   ] [Image       ] Providers: img_tex, img_dds, img_gif (img_sdl2, img_pil, img_ffpyplayer ignored)
    [CRITICAL] [Window      ] Unable to find any valuable Window provider at all!
    egl_rpi - ImportError: cannot import name bcm
...

但是,当我使用execfile('file.py')从交互式python会话运行文件时,它可以正常工作。

有谁知道如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

您确定安装得干净吗? 在虚拟环境中试试这个:

hg clone https://bitbucket.org/pygame/pygame
cd pygame
python setup.py build
python setup.py install