在我的代码中,我像这样使用DictCursor
frompsycopg2.extras
dict_cur = conn.cursor(cursor_factory=psycopg2.extras.DictCursor)
但是,突然我在加载游标时得到以下错误:
AttributeError: 'module' object has no attribute 'extras'
也许我的装置有些奇怪,但我不知道从哪里开始寻找。我对pip进行了一些更新,但据我所知,没有相关性psycopg2
。