sqlalchemy.exc.NoSuchModuleError: Can‘t load plugin: sqlalchemy.dialects:presto

看到这个错误提示,正常以为是sqlalchemy的问题,比如版本低。
实际上是,python连presto需要pyhive这个包。

我的配置是:
PyHive(0.6.1)
SQLAlchemy(1.0.13)

解决方法是:安装pyhive

你可能感兴趣的:(python)