python windows环境报错cl.exe failed with exit status 2通用解决方法

error: command 'C:\\Users\\user\\AppData\\Local\\Programs\\Common\\Microsoft\\Visual C++ for Python\\9.0\\VC\\Bin\\amd64\\cl.exe' failed with exit status 2

解决问题:

因为lxml的底层是使用C语言实现的,因此电脑上面需要安装Virtual C++运行库。但是即便你安装好了Virtual C++运行库,你还是有可能出问题。

解决类似问题的方法

访问 http://www.lfd.uci.edu/~gohlke/pythonlibs/

根据自己电脑的Python版本下载对应的whl包。如果你的电脑是Windows 64位,Python 版本是 2.7 的话,那么下载:lxml-3.7.3-cp27-cp27m-win_amd64.whl

pip install lxml-3.7.3-cp27-cp27m-win_amd64.whl 

 如果还是不好使

       方式一:

把lxml-3.7.3-cp27-cp27m-win_amd64.whl,这个文件的后缀名由.whl改为.zip,使用WinRAR或者7-Zip等解压缩工具解压。解压以后,你会得到两个文件夹,lxml和lxml-3.7.3.dist-info,把两个文件夹复制到python安装文件夹下面的 Lib\site-packages 下,就可以用了

        方式二:

        参考: pycharm安装wordcloud出现error: command 'C:\\****\\bin\\HostX86\\x86\\cl.exe' failed with exit status 2

 

参考文章:

     python中安装wordcloud 出现cl.exe failed with exit status 2问题解决

你可能感兴趣的:(环境搭建,python)