有关安装 PyCrypto 和error: Unable to find vcvarsall.bat

今天折腾一个微信sdk库,叫wechatpy的,里面有个依赖库就是PyCrypt。

如果直接 pip install wechatpy 的话,最后就会遇到 error: Unable to find vcvarsall.bat

google之,一堆解决方法,都无效,应该都是过期的了。

之后找到2个好文章,

1是介绍了微软的 Microsoft Visual C++ Compiler for Python 2.7 下载地址:http://www.microsoft.com/en-us/download/details.aspx?id=44266

2是介绍了setuptools版本如果高于6.0的话,就能自动搜寻编译器。

http://stackoverflow.com/questions/26140192/microsoft-visual-c-compiler-for-python-2-7


然后,先安装了1,然后查看了一下自己的setuptools,版本3.6,果断升级到7.0

pip install --upgrade setuptools

之后重新 pip install wechatpy,一切顺利!

记录一下!

你可能感兴趣的:(有关安装 PyCrypto 和error: Unable to find vcvarsall.bat)