Closed dengfeng0729 closed 9 months ago
I was able to make it work with the following changes
Inapp.py
, add at the top
from lightning.app import LightningApp
And then change the following line
app = L.LightningApp(LitGradio())
Into
app = LightningApp(LitGradio())
Will make a PR to fix this
I was able to make it work with the following changes In
app.py
, add at the topfrom lightning.app import LightningApp
And then change the following line
app = L.LightningApp(LitGradio())
Into
app = LightningApp(LitGradio())
Will make a PR to fix this
yes, LightningApp This package is included in Lightning.app, the source code does not import the app
AttributeError: module 'lightning' has no attribute 'LightningApp' I can not run this project, how to deal with it ?