windows安装fdfs_client-py-master报错 cl.exe failed with exit status 2

error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\x86_amd64\\cl.exe' failed with exit status 2

解决方法: 

1. 下载 fdfs_client-py-master.zip

2. 解压fdfs_client-py-master.zip后目录如下:

windows安装fdfs_client-py-master报错 cl.exe failed with exit status 2_第1张图片

3. 修改目录下的setup.py

注释掉下方两行代码    
#'ext_modules': [Extension('fdfs_client.sendfile',
#                         sources=['fdfs_client/sendfilemodule.c'])],

windows安装fdfs_client-py-master报错 cl.exe failed with exit status 2_第2张图片

4. 进入目录fdfs_client 修改文件 storage_client.py

注释掉下方一行代码   
# from fdfs_client.sendfile import *

windows安装fdfs_client-py-master报错 cl.exe failed with exit status 2_第3张图片

5. 回到解压之后的目录, 运行setup.py即可

python setup.py install

windows安装fdfs_client-py-master报错 cl.exe failed with exit status 2_第4张图片

6. (补充), 如果是PyCharm中虚拟环境如何安装

在虚拟环境中进入fdfs_client-py-master.zip解压后的目录然后执行上述步骤5即可

你可能感兴趣的:(Python)