home.py
from urbancloth import app
if __name__ == '__main__':
app.run(debug =True)
中的代码:__init__.py
答案 0 :(得分:0)
如果您仔细查看错误
from urabncloth import app
在您的目录中,没有urabncloth
是urbancloth
。只是一个错字。
因此,请在您的routes.py
中更改软件包名称。
希望这可以解决您的问题!!!