AWS Elastic Beanstalk错误 - ImportError:没有名为flask.ext.sqlalchemy的模块

时间:2013-08-18 00:42:18

标签: python amazon-web-services flask elastic-beanstalk flask-sqlalchemy

我将烧瓶应用程序部署到aws beanstalk中并遇到导入错误:

ImportError: No module named flask.ext.sqlalchemy

在我的application.py文件中,我有这个声明

from flask.ext.sqlalchemy import SQLAlchemy

它在我的机器上运行正常,但在aws弹性beanstalk中不起作用。

有人遇到过类似的问题吗?

1 个答案:

答案 0 :(得分:19)

确保在项目的根目录中包含了requirements.txt文件。

该文件应包含需要安装的任何pip包

Flask-SQLAlchemy=1.0

http://www.pip-installer.org/en/latest/cookbook.html#requirements-files