2019年10月5日 星期六

[Trouble shooting] AttributeError: 'module' object has no attribute 'time' 解決方式

今天嘗試寫一個python遭遇以下:


 File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py", line 95, in <module>
    _startTime = time.time()
AttributeError: 'module' object has no attribute 'time'

明明沒有用到time 模組,為什麼還會出現此訊息呢?


發現原來在當前資料夾下有建立一個time.py
但是python會以為要引入module time
因此,會在當前資料夾下產生time.pyc

解決方式: 重新命名time.py 並移除time.pyc 即可

ref. to : https://stackoverflow.com/questions/11568223/python-yet-another-attributeerror-module-object-has-no-attribute

沒有留言:

張貼留言