CMD compile Error 我正在学习使用flexx创建一个GUI网站。这是我教授的一个例子。当我尝试对其进行编译时,它将返回AttributeError type object IOLoop has no attribute current
。为什么?
from flexx import flx
class Example(flx.Widget):
def init(self):
flx.Button(text='Hello')
flx.Button(text='world')
app = flx.App(Example)
app.export('example.html',link=0) #export to singe file
app.launch('browser') #show it now in a broswer
flexx.run() # enter the mainloop
答案 0 :(得分:0)
我认为我们在同一个班上。
并得到同样的问题。
关于pyzmq和龙卷风版本的原因
尝试pip3 install tornado==5
升级龙卷风
然后龙卷风和pyzmq可以正常工作。