AttributeError: module 'cryptography.utils' has no attribute 'Enum'
时间: 2023-11-22 16:50:23 浏览: 311
开发errorjsp-手把手带你入门ssh项目
这个错误通常是因为你正在使用的版本的cryptography库不支持Enum。这个问题可以通过更新cryptography库来解决。你可以使用以下命令更新cryptography库:
```shell
pip install --upgrade cryptography
```
如果更新后仍然出现此错误,请检查你的代码是否有其他问题。如果问题仍然存在,请尝试使用较早的版本的cryptography库。
阅读全文