本文介绍了Python 3.3 无法导入 Crypt的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我在命令行输入 import Crypt 时,它说:
When I type in import Crypt on the command line it says:
>>>import crypt
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python33\lib\crypt.py", line 3, in <module>
import _crypt
ImportError: No module named '_crypt'
推荐答案
crypt
模块 是 Unix crypt
库的接口 用于加密 Unix 密码.它被记录为在 Windows 上不可用.它不是一个通用的密码学库.
The crypt
module is an interface to the Unix crypt
library which is used for encrypting Unix passwords. It is documented as not being available on Windows. It is not a general purpose cryptography library.
这篇关于Python 3.3 无法导入 Crypt的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!