我是 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'
谁可以帮我这个事?