python – ‘frozenset’对象不可调用
作者:互联网
当我尝试在任何上下文中导入hashlib时,它会抛出此错误:
File "<stdin>", line 1, in <module>
File "build/bdist.macosx-10.11-intel/egg/hashlib.py", line 115, in <module>
"""
TypeError: 'frozenset' object is not callable
知道如何解决这个问题吗?我只是通过打开终端,运行python然后键入import hashlib来生成此错误.
解决方法:
我昨天遇到了同样的问题,没有安装Hashlib并尝试使用pip安装它会产生错误.我通过使用easy_install安装它来修复它.
此外,我不得不在Windows上安装Scipy和Microsoft Visual C++ Compiler for Python 2.7,它们是Hashlib所必需的
标签:hashlib,python,python-2-7,frozenset 来源: https://codeday.me/bug/20190927/1823077.html