我已经在我的Windows上安装了dbt。在创建了必要的配置之后,我成功地执行了dbt debug。我试着执行dbt run。我安装了一个本地Postgres,并得到以下错误:
RecursionError: maximum recursion depth exceeded while calling a Python object
dbt --version输出
installed version: 1.0.4
latest version: 1.0.4
Up to date!
Plugins:
- postgres: 1.0.4 - Up to date!我能做些什么吗?
发布于 2022-03-22 15:08:47
这是一个已知的问题,使用dbt与Python3.10:https://github.com/dbt-labs/dbt-core/issues/4560一起使用
dbt支持最多3.9:https://docs.getdbt.com/faqs/install-python-compatibility的Python版本。
解决方案是使用Python3.9而不是3.10。
https://stackoverflow.com/questions/71547080
复制相似问题