我需要你的帮助,

如何更正错误AttributeError:“模块”对象没有属性“ sha1”,

当我启动命令示例import random或import hashlib时,我得到了这样的结果

root@thinkad:~# python
Python 2.7.3 (default, Jan  2 2013, 13:56:14) 
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import random
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/random.py", line 49, in <module>
    import hashlib as _hashlib
  File "hashlib.py", line 3, in <module>
    hasher = hashlib.sha1()
AttributeError: 'module' object has no attribute 'sha1'
>>> import math
>>> import hashlib
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "hashlib.py", line 3, in <module>
    hasher = hashlib.sha1()
AttributeError: 'module' object has no attribute 'sha1'
>>> 

提前帮助..thakns


解决方法:

看起来您有一个名为hashlib.py的文件,该文件妨碍了解释器查找标准的hashlib模块.

标签: linux, python-2-7, hashlib

相关文章推荐

添加新评论,含*的栏目为必填