Python:安装pygresql

时间:2017-01-02 11:37:35

标签: python-3.x pygresql

我正在尝试使用pip在我的计算机上安装PyGreSQL模块。它显示了这条消息:    Collecting pygresql Using cached PyGreSQL-5.0.3-cp35-cp35m-win_amd64.whl Installing collected packages: pygresql Successfully installed pygresql-5.0.3 但是当我尝试导入它时,下一个消息就是这个

>>> import pygresql
   Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    ImportError: No module named 'pygresql'
 >>> from pygresql import _pg
   Traceback (most recent call last):
   File "<stdin>", line 1, in <module>
   ImportError: No module named 'pygresql'

2 个答案:

答案 0 :(得分:0)

根据其网站上的文档,

pgfrom pg import DB一样。

答案 1 :(得分:0)

阅读此link后,我能够解决这个问题。

我遇到的第一个错误是没有postgresqlpython.的兼容版本 第二个错误是没有设置正确的路径变量。

希望这可以帮助有同样问题的人。谢谢你们:)