心理2:';模块';对象没有属性';
问题描述
我正在尝试连接到具有心理拷贝2的Postgres数据库:
import psycopg2
try:
conn = psycopg2.connect("dbname='puppetdb' user='puppetdb' host='172.17.0.1' port='5432' password='puppetdb'")
except Exception, e:
print "I am unable to connect to the database"
print e
返回:
I am unable to connect to the database
'module' object has no attribute 'connect'
我已确保使用pip install psycopg2
安装了opcopg2,并且这似乎应该根据documentation来工作。
我做错了吗?
解决方案
这可能是名称跟踪问题。
如果您的文件名为ological Copg2.py,或者如果您的目录中有一个ological copg2.py/ological copg2.pyc文件,则它将在实际的pyscope g2模块上导入您的脚本。
如果这是问题所在,则将您的文件重命名为其他名称。
相关文章