python3.8版本安装robotframework 踩坑

 

执行pip install pyCrypto 安装过程中遇到了问题。

warning: GMP or MPIR library not found; Not building Crypto.PublicKey._fastmath.
    building 'Crypto.Random.OSRNG.winrandom' extension
    error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/

提示我电脑缺少Microsoft Visual C++ Build Tools。

下载地址:https://my.visualstudio.com/Downloads?PId=6542

python3.8版本安装robotframework 踩坑_第1张图片

python3.8版本安装robotframework 踩坑_第2张图片

 

 

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyCrypto

 

最后怎么试都不行。

 

 

搞了好久,最后解决方案:

卸载python3.8版本。改成低版本3.5或者3.6、3.7 都可以!就解决这个问题了

你可能感兴趣的:(python3基础,python常见框架)