psycopg2: AttributeError: 'module'对象没有属性'extras'

10 浏览
0 Comments

psycopg2: AttributeError: 'module'对象没有属性'extras'

在我的代码中,我使用psycopg2.extras中的DictCursor,代码如下:

dict_cur = conn.cursor(cursor_factory=psycopg2.extras.DictCursor)

然而,突然间当我加载游标时,出现了以下错误:

AttributeError: 'module' object has no attribute 'extras'

也许我的安装有些问题,但我不知道从哪里开始查找。我用pip进行了一些更新,但据我所知,没有psycopg2的依赖项。

0