没有模块名为 Crypto import error for sage
No module named Crypto import error for sage
我是 运行 Sage 在 Ubuntu 机器上的笔记本,我正在使用模块加密来使用 AES。我的代码是 from Crypto.Cipher import AES
。有很多错误 ImportError: No module named Crypto
的帖子,但其中 none 显然对我有用,因为我有 python anaconda 安装和 python Sage 安装。我该如何解决?
正在使用 Sage 的 pip 安装 pycrypto 模块,
通过 运行 在终端中输入以下内容:
$ sage --pip install pycrypto
然后启动Sage并使用Crypto模块:
$ sage -q
sage: from Crypto.Cipher import AES
sage:
我是 运行 Sage 在 Ubuntu 机器上的笔记本,我正在使用模块加密来使用 AES。我的代码是 from Crypto.Cipher import AES
。有很多错误 ImportError: No module named Crypto
的帖子,但其中 none 显然对我有用,因为我有 python anaconda 安装和 python Sage 安装。我该如何解决?
正在使用 Sage 的 pip 安装 pycrypto 模块, 通过 运行 在终端中输入以下内容:
$ sage --pip install pycrypto
然后启动Sage并使用Crypto模块:
$ sage -q
sage: from Crypto.Cipher import AES
sage: