46

我正在尝试运行alembic迁移,当我运行时

alembic revision --autogenerate -m "Added initial tables"

它失败了

sqlalchemy.exc.ArgumentError: Can't load plugin: sqlalchemy.dialects:driver

数据库网址是

postgresql+psycopg2://dev:passwd@localhost/db

我什至已经psycopg2安装在我的 virtualenv 中

$yolk -l
Flask-Login     - 0.1.3        - active
Flask-SQLAlchemy - 0.16         - active
Flask           - 0.9          - active
Jinja2          - 2.6          - active
Mako            - 0.7.3        - active
MarkupSafe      - 0.15         - active
Python          - 2.7.2        - active development (/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload)
SQLAlchemy      - 0.8.0        - active
Werkzeug        - 0.8.3        - active
alembic         - 0.4.2        - active
antiorm         - 1.1.1        - active
appscript       - 1.0.1        - active
distribute      - 0.6.27       - active
envoy           - 0.0.2        - active
osascript       - 0.0.4        - active
pep8            - 1.4.5        - active
pip             - 1.1          - active
psycopg2        - 2.4.6        - active
wsgiref         - 0.1.2        - active development (/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7)
yolk            - 0.4.3        - active

为什么会导致这个问题?

4

11 回答 11

69

以下是如何产生这样的错误:

>>> from sqlalchemy import *
>>> create_engine("driver://")
Traceback (most recent call last):
... etc
sqlalchemy.exc.ArgumentError: Can't load plugin: sqlalchemy.dialects:driver

所以我会说您实际上并没有使用您认为的 postgresql URL - 您可能正在某处调用默认生成的 alembic.ini。

于 2013-03-27T16:51:56.853 回答
10

对于那些没有注意到它的人,“默认生成的alembic.ini” zzzzeek指的是在项目的根目录中。

整个问题是在文件中设置sqlalchemy.url配置参数之一。alembic.ini此外,它可以按照https://stackoverflow.com/a/15668175/973380中的说明以编程方式设置。

于 2015-10-06T02:50:34.880 回答
7

请注意,该方案实际上并未指定驱动程序,而是指定方言:该方案的形式为dialect:// or dialect+driver://

例如,连接到 PostgreSQL 数据库的正确 url 将以 example 开头postgres://(默认为 using psycopg2),或显式选择驱动程序(postgres+psycopg2://,或使用另一个驱动程序)。

如果您碰巧 psycopg2指定,您将收到错误

sqlalchemy.exc.NoSuchModuleError: Can't load plugin: sqlalchemy.dialects:psycopg2
于 2017-08-31T10:13:08.483 回答
1

我通过简单地在 notepad++ 中打开 alembic.ini 然后将变量 sqlachemy.url (大约在第 38 行)修改为我的项目文件中的 url 解决了这个问题。该错误很可能是因为它在开始时有驱动程序引起的。

即将这一行重命名为

sqlalchemy.url = sqlite:///name_of_my_database.db
于 2020-09-19T17:38:23.740 回答
0

尝试这些命令来安装缺少的软件包:

sudo apt-get install libpq-dev 
sudo pip install psycopg2 
sudo pip install redshift-sqlalchemy 
sudo pip install sqlparse
于 2015-05-04T15:07:56.637 回答
0

如果您使用正确的语法来创建引擎,具体取决于您选择的数据库,create_engine(f"<dialect_name>+<driver_name>://{self.user}:{self.password}@{self.host}:{self.port}/{self.database})并且此处的其他建议都无法解决您的问题,您可以尝试下一段中概述的解决方案。

问题,NoSuchModuleError: Can't load plugin: sqlalchemy.dialects:\<dialect_name\>.\<driver_name\>可能是由于运行支持您需要的驱动程序的 SQLAlchemy 版本引起的。例如,SQLAlchemy 1.4.26 支持这些 PostgreSQL驱动程序。所以,解决方案:

  1. 检查支持驱动程序的文档,了解您需要的方言。
  2. 然后卸载 SQLAlchemy 或有问题的驱动程序pip uninstall SQLAlchemy
  3. 强制 pip 安装特定版本的 SQLAlchemy 或替代驱动程序,pip install SQLAlchemy==1.0.14
于 2021-10-28T09:23:44.323 回答
0
connection_url=""  
#your database connection string here pulled from either environment variable , vaults or can be set directly

def run_migrations_offline():
    """Run migrations in 'offline' mode.

    This configures the context with just a URL
    and not an Engine, though an Engine is acceptable
    here as well.  By skipping the Engine creation
    we don't even need a DBAPI to be available.

    Calls to context.execute() here emit the given string to the
    script output.

    """
    url = connection_url 
    context.configure(
        url=url,
        target_metadata=target_metadata,
        literal_binds=True,
        dialect_opts={"paramstyle": "named"},
    )

    with context.begin_transaction():
        context.run_migrations()


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.

    """
    configdict=config.get_section(config.config_ini_section)
    configdict.update({"sqlalchemy.url":connection_url})
    connectable = engine_from_config(
        configdict,
        prefix="sqlalchemy.",
        poolclass=pool.NullPool,
    )

    with connectable.connect() as connection:
        context.configure(
            connection=connection, target_metadata=target_metadata
        )

        with context.begin_transaction():
            context.run_migrations()

如果你想从你的 python 文件本身读取连接 url 而不参考默认值

alembic.ini

配置文件。

于 2021-12-13T15:25:57.250 回答
0

要以编程方式覆盖 中的默认值alembic.ini,您可以在 中添加一两行代码alembic/env.py

+ import app

[...snip...]

  # this is the Alembic Config object, which provides
  # access to the values within the .ini file in use.
  config = context.config

+ config.set_section_option(
    config.config_ini_section, "sqlalchemy.url", app.settings.SQLALCHEMY_DATABASE_URL
)

whereimport appapp.settings.SQLALCHEMY_DATABASE_URL被您自己的特定于应用程序的代码替换以检索 URL。

于 2021-07-27T14:56:56.107 回答
0

让 Teradata 查询在 Pyinstaller 生成的 .exe 上运行。我将引擎从 SQLAlchemy 更改为 Teradata

从 :

import sqlalchemy as sa
user, pasw, hostname = UserName,Password, 'myurl.com'
# connect
td_engine = sa.create_engine('teradata://{}:{}@{}:22/'.format(user,pasw,hostname),echo=True)
df = pd.read_sql_query(query1,connect)

至:

import teradata
user, pasw, hostname = UserName,Password, 'myurl.com'
td = teradata.UdaExec (appName="test", version="1.0", logConsole=True)
td_engine = td.connect(method="odbc",system=hostname, username=user,password=pasw,driver="Teradata") 
于 2019-01-15T22:00:08.657 回答
-1

如果你有 anaconda,请卸载它。它正在 anaconda 路径中安装您的 mysql 连接器,并且您的代码可能正在 python 路径中查找。

于 2020-04-09T16:46:49.650 回答
-2

我做到了,

pip install ibm_db_sa

它解决了问题

于 2019-12-19T14:54:22.773 回答