import kivy
from kivy.app import App
from kivy.uix.label import Label
class MyApp(App):
def build(self):
return Label (text="tushar")
if __name__=="__main__":
MyApp().run
我正在Google合作实验室上运行此简单代码。但是我没有任何输出。使用Google Colaboratory的原因是我的移动应用程序必须支持PC上不支持的TensorFlow。有什么建议吗?
答案 0 :(得分:0)
对于大多数UI(用户界面),您需要渲染(Kivy与OpenGL一起使用)。此渲染在Colab中尚不可用。