2013-07-18 38 views
1

最近我一直無法在cmd中鍵入'python'。它會給我一個錯誤說:Types.py錯誤,重命名問題,AttributeError

Traceback (most recent call last): 
File "C:\Python27\lib\site.py", line 62, in <module> 
import os 
File "C:\Python27\lib\os.py", line 398, in <module> 
import UserDict 
File "C:\Python27\lib\UserDict.py", line 83, in <module> 
import _abcoll 
File "C:\Python27\lib\_abcoll.py", line 70, in <module> 
Iterable.register(str) 
File "C:\Python27\lib\abc.py", line 107, in register 
if not isinstance(subclass, (type, types.ClassType)): 
AttributeError: 'module' object has no attribute 'ClassType' 

有人告訴我,在我的sys.path中,稱爲types.py重命名文件。我在Python27目錄下的Lib文件夾中重命名了一個types.py,但它仍然沒有改變。我在這裏做錯了什麼?

+1

「有人」一直給你很糟糕的建議。你不應該修改python/Lib中的文件。 –

+0

那麼你知道如何解決這個錯誤嗎? – user2594359

+0

將它重命名爲... –

回答

1

好像你已經創建了一個名爲「abc.py」的文件,如果是的話請重命名。那麼它應該工作。 :)