我正在尝试将Flask
项目与Alembic
进行整合
我的应用程序结构看起来像
project/
configuration/
__init__.py
dev.py
test.py
core/
# all source code
db/
migrations/
__init__.py
alembic.ini
env.py
versions/
当我尝试从db
目录运行以下内容时,我看到了
File "migration/env.py", line 55, in run_migrations_online
from configuration import app, db
ImportError: No module named configuration
我尝试了Request a simple alembic working example for Auto Generating Migrations中提到的解决方案,但它对我不起作用
env.py
run_migrations_online()
中我的方法有变化
def run_migrations_online():
"""Run migrations in 'online' mode.
In this scenario we need to create an Engine
and associate a connection with the context.
"""
import os
import sys
sys.path.append(os.getcwd())
from configuration import app, db
alembic_config = config.get_section(config.config_ini_section)
alembic_config['sqlalchemy.url'] = app.config['SQLALCHEMY_DATABASE_URI']
target_metadata = db.metadata
engine = engine_from_config(
alembic_config,
prefix='sqlalchemy.',
poolclass=pool.NullPool)
connection = engine.connect()
context.configure(
connection=connection,
target_metadata=target_metadata
)
try:
with context.begin_transaction():
context.run_migrations()
finally:
connection.close()
if context.is_offline_mode():
run_migrations_offline()
else:
run_migrations_online()
我该如何解决这个问题?
答案 0 :(得分:32)
我做了export PYTHONPATH=<path_to_project>
并再次运行命令并成功运行
答案 1 :(得分:12)
你说你从alembic migrate --autogenerate -m 'migration description'
目录运行类似project/db
的内容并获得ImportError
,对吗?
如果是这样,问题显而易见。
请参阅:您尝试导入configuration
模块,但会导致错误。然后你放sys.path.append(os.getcwd())
- 换句话说,你将当前目录添加到系统路径。但目前的目录是什么?它是project/db
,并且它下面没有configuration
模块,因此您继续获取ImportError
。
解决方案是添加到系统路径父目录 - project
,其中包含configuration
模块。像这样:
parent_dir = os.path.abspath(os.path.join(os.getcwd(), ".."))
sys.path.append(parent_dir)
答案 2 :(得分:2)
我们遇到了同样的问题,归结为env.py没有被修订版调用,除非设置了--autogenerate
标志。您可以通过在env.py文件的顶部放置一个print语句来测试它。
我们通过调用--autogenerate
然后删除生成的代码来解决这个问题。