pycurl-7.43.0.3-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform

记一次通过pip 安装 pycurl 报错pycurl-7.43.0.3-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform 的问题

我遇到的这个错是因为安装了python2 和python3 这2个版本导致的问题;

解决办法:

将命令:

pip install pycurl-7.43.0.3-cp27-cp27m-win_amd64.whl 

改写为(即切换到python2)

pip2 install pycurl-7.43.0.3-cp27-cp27m-win_amd64.whl

错误提示

pycurl-7.43.0.3-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform 

切换后正常安装

pycurl-7.43.0.3-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform