找不到加密模块 (python3.7)

crypt module not found (python3.7)

我正在使用 python 3.7,crypt 模块,以前是内置的 python 2.x,现在我可以好像找到了 我试过 https://docs.python.org/3/library/crypt.html 但它的源代码使用 _crypt 我也无法下载 任何帮助表示赞赏。

import crypt

我收到这个错误

    import _crypt
ModuleNotFoundError: No module named '_crypt'

如果你在 Windows 那是因为 crypt is a Unix Specific Service.

我卸载了 crypto 并重新安装,它解决了我的问题。

pip uninstall crypto
pip install crypto