2017-01-02 80 views
0

我想在我的電腦上使用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 但是當我嘗試將其導入第二天消息是這Python:安裝pygresql

>>> 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' 

回答

0

其根據在其網站上的文檔pgfrom pg import DB

+0

'>>>從PG進口分貝 回溯(最近通話最後一個): 文件 「」,1號線,在 g.py」 32行,在 從_pg import * ImportError:DLL加載失敗:找不到指定的模塊' – sleepcoffeedelight

+0

特定於個案:'DB'。 –

+0

是的,也試過了,它不工作,它說它不能識別模塊pygresql – sleepcoffeedelight

0

看完這個link後我能解決這個問題。

我遇到的第一個錯誤是沒有兼容版本postgresqlpython. 第二個錯誤是沒有設置正確的路徑變量。

希望這可以幫助有同樣問題的人。謝謝你們:)