本文介绍了猕猴桃你好世界无法正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在我的Ubuntu系统上使用kivy.我按照他们的 wesbite 中的说明进行操作.
I am trying to make kivy work on my Ubuntu system. I followed the instructions from their wesbite.
但是当我尝试从他们的网站运行以下hello world代码时:
But when I try to run the following hello world code from their website:
import kivy
kivy.require('1.5.1') # replace with your current kivy version !
from kivy.app import App
from kivy.uix.button import Button
class MyApp(App):
def build(self):
return Button(text='Hello World')
if __name__ == '__main__':
MyApp().run()
我收到以下错误消息:
[INFO ] Kivy v1.5.1
[INFO ] [Logger ] Record log in /home/malik/.kivy/logs/kivy_13-03-08_6.txt
[INFO ] [Factory ] 137 symbols loaded
[DEBUG ] [Cache ] register <kv.lang> with limit=None, timeout=Nones
[DEBUG ] [Cache ] register <kv.image> with limit=None, timeout=60s
[DEBUG ] [Cache ] register <kv.atlas> with limit=None, timeout=Nones
[DEBUG ] [Cache ] register <kv.texture> with limit=1000, timeout=60s
[DEBUG ] [Cache ] register <kv.shader> with limit=1000, timeout=3600s
[INFO ] [Text ] using <pygame> as text provider
[DEBUG ] [App ] Loading kv <./my.kv>
[DEBUG ] [App ] kv <./my.kv> not found
[INFO ] [Window ] using <pygame> as window provider
X Error of failed request: BadRequest (invalid request code or no such operation)
Major opcode of failed request: 138 (ATIFGLEXTENSION)
Minor opcode of failed request: 66 ()
Serial number of failed request: 14
Current serial number in output stream: 14
与我的图形卡有关吗?我正在使用ATI Mobility Radeon HD 5400显卡.
Has it something to do with my graphics card? I am using ATI Mobility Radeon HD 5400 graphics card.
推荐答案
最后通过将Ubuntu更新到12.10使其正常工作,看来问题出在图形驱动程序上.现在,该示例正在按预期方式工作.谢谢琼洁和准农.
Finally got it working by updating Ubuntu to 12.10 Seems like the issue was the graphics driver. Now the example is working as expected. Thanks Qiongjie and qua-non.
这篇关于猕猴桃你好世界无法正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!