python错误“AttributeError:'module'对象没有属性'sha1'”

Dro*_*oid 10 linux hashlib python-2.7

我需要你的帮助,

如何纠正错误 AttributeError: 'module' object has no attribute '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'
>>> 
Run Code Online (Sandbox Code Playgroud)

小智 27

在安装了一些 brew cask 之后进行了一些定期清理后出现了问题。然后 node-gyp 无法为我的节点应用程序重建一些包。重新安装 python 2 帮助了我。

在 MacOS 上:

brew reinstall python@2
Run Code Online (Sandbox Code Playgroud)


NPE*_*NPE 1

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