Visual studio pycrypto 需要吗?

Visual studio required for pycrypto?

我是 Python 的新手。所以,请温柔点

我尝试安装 pycrypto 以使用 encryption and deceryption。我使用了 Python 命令 pip install pycrypto。在 运行 上,命令收到以下错误:

error: [WinError 3] The system cannot find the path specified: 'C:\Program Files\Microsoft Visual Studio 14.0\VC\PlatformSDK\lib'

1) 由于错误是指微软visual studio,是否必须安装Visual studio才能安装pycrypto?我已经验证了系统中的路径(C# 项目已经有 visual studio)。我有路径 - c:\Program Files\Microsoft Visual Studio 14.0\vc\,但 PlatformSDK 文件夹不存在

2) c:\Program Files\Microsoft Visual Studio 14.0\vc\ - 我可以知道为什么它指的是 VC 吗?

3) 如果不需要 visual studio,我该怎么做才能修复错误?

其他信息 - 我已经在机器上安装了 Python 3.7。

更新:根据 Moses 的回答,Pycryptodome 不需要 Microsoft Visual C++,我可以毫无问题地安装。但是还没有针对 library

测试代码

我觉得 answer may help you get past the installation problem you are facing. As for alternatives to pycrypto on Python 3.7, you could try PyCryptodome