ModuleNotFoundError:烧瓶

时间:2020-04-27 08:43:13

标签: python flask flask-sqlalchemy python-module

  • 我正在从urbancloth的{​​{1}}包中调用一个模块
  • 这将运行home.py文件,但不会运行urbancloth中存在的另一个模块。

  • 目录结构如下- enter image description here

  • __init__中的代码:

home.py
  • from urbancloth import app if __name__ == '__main__': app.run(debug =True) 中的代码:
__init__.py

,错误消息是- enter image description here

I am following Sir CoreySchafers Flask tutorials

Github for original code

1 个答案:

答案 0 :(得分:0)

如果您仔细查看错误 from urabncloth import app

在您的目录中,没有urabnclothurbancloth。只是一个错字。
因此,请在您的routes.py中更改软件包名称。

希望这可以解决您的问题!!!