我知道有類似的問題,但我找不到解決方案。這是我所做的。ImportError:無法導入名稱Ghost
我使用pip安裝了ghost模塊。 site-packages/ghost文件夾有3個文件__init__.py
,ghost.py
和test.py
。
__init__.py
具有以下內容
from ghost import Ghost
from test import GhostTestCase
模塊認爲這種方法
from ghost import Ghost
但它引發以下錯誤。
File "<pyshell#3>", line 1, in <module>
from ghost import ghost
File "G:\Python33\lib\site-packages\ghost\__init__.py", line 1, in <module>
from ghost import Ghost
ImportError: cannot import name Ghost
我試着將路徑添加到PYTHONPATH;它沒有工作。我想不通爲什麼它是一個標準的module.I發生在我工作的Python 3.3
'ghost'模塊是你的模塊嗎?名稱之間可能存在衝突 – gipi 2013-04-05 16:33:59
@gipi我沒有使模塊,我使用python模塊ghost – feminkk 2013-04-05 16:41:10