我是Python和Clutter的绝对初学者。我从网站复制了以下内容
import clutter
stage = clutter.Stage()
stage.set_size(400, 400)
label = clutter.Label()
label.set_text("Clutter Label Text")
# If no position is given it defaults to the upper most left corner.
stage.add(label)
stage.show_all()
clutter.main()
当我尝试运行这个脚本时,我得到了
AttributeError: 'module' object has no attribute 'Stage'
有人能帮我吗?
确保脚本文件名不是clutter.py
。
如果是,请重命名它,并确保同一目录中没有clutter.pyc
。
否则,它会阻止导入所需的clutter
模块,但会导入您自己的模块。