我正在尝试安装hashlib,但是Pycharm抱怨库中的拼写错误。
Collecting hashLib
Using cached https://files.pythonhosted.org/packages/74/bb/9003d081345e9f0451884146e9ea2cff6e4cc4deac9ffd4a9ee98b318a49/hashlib-20081119.zip
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/private/var/folders/6_/8g1vyy5n1t1859x2d30ssk480000gn/T/pycharm-packaging/hashLib/setup.py", line 68
print "unknown OS, please update setup.py"
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("unknown OS, please update setup.py")?
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/6_/8g1vyy5n1t1859x2d30ssk480000gn/T/pycharm-packaging/hashLib/
这表明可能是与我使用的Python版本有关的问题(我尝试使用python 2.7和python 3.8,但都没有用)。
确保使用此程序包支持的Python版本。 当前,您正在使用Python 3.8。
您知道我可以使用任何类似的库吗?(我需要用于简单哈希密码函数的库) 谢谢您,这是我的第一篇文章,因此,如果您需要更多有关此问题的信息,请立即联系我。