当我在windows命令中使用pip install bcrypt时,它会引发此错误:
command python setup.py egg_info failed with error code 1
我该如何解决这个问题?
答案 0 :(得分:0)
我发现bcrypt不能在Windows Vista或7,32或64位上使用pip与Python 2.7安装。解决方法是使用bcrypt下载wheel文件并安装它。例如,从这里下载适当的wheel文件: https://bitbucket.org/alexandrul/py-bcrypt/downloads。可能还有其他存储库;这只是我偶然发现的第一个。 下载后,键入:
pip install wheel
pip install py_bcrypt.whl
其中py_bcrypt.whl是您为特定Windows版本下载的wheel文件的名称。