Python3.6 安装pip3 install alipay-sdk-python -i https://pypi.tuna.tsinghua.edu.cn/simple/
遇到pycrypto安装错误:
我本地用的是Windows10系统
提示错误与 Visual Studio 有关,但我本地是已安装了Visual Studio
解决方案:
进行环境变量中用户变量(不是系统变量)的设置。
变量名称:VCINSTALLDIR
变量值:D:\VisualStudio\VC
接下来,打开cmd,执行如下命令:
set CL=/FI"%VCINSTALLDIR%\\INCLUDE\\stdint.h" %CL%
注意:如果是虚拟环境,请在虚拟环境的命令行中输入此命令,并且命令中的符号都是英文半角的,网上有的资料中引号是中文符号,导致仍然无法安装pycrypto
如果还报错误“src/winrand.c: fatal error C1083: Cannot open include file: ‘%VCINSTALLDIR%\\INCLUDE\\stdint.h’: No such file or directory”,可以尝试把命令改为绝对路径。如下:
set CL=/FI"D:\\VisualStudio\\VC\\\INCLUDE\\stdint.h" %CL%
完成上述步骤之后,重新执行安装Pycrypto的命令,就应该不出什么问题了。
注意:建议每次执行上述命令时,先通过“set CL=
”命令,将已有设置清空。
继续安装alipay-sdk-python
pip3 install alipay-sdk-python -i https://pypi.tuna.tsinghua.edu.cn/simple/