我是编程新手,并尝试完成烧瓶教程。 http://flask.pocoo.org/docs/tutorial/
尝试运行应用程序时,我被困在这部分(来自 github 上的自述文件): https ://github.com/mitsuhiko/flask/tree/master/examples/flaskr/
启动一个 python shell 并运行它:
from flaskr import init_db; init_db()
当我尝试在 python shell 中运行命令时出现此错误:
Import error: No module named flaskr
当我尝试在本地运行应用程序时出现此错误:
sqlite3.OperationalError
OperationalError: unable to open database file
我一直在寻找解决方案几个小时,但无济于事。关于我可以检查什么的任何想法?谢谢你。