安装pandas报错'setuptools' requires a different Python: 2.7.5 not in '>3.5'

问题描述

安装pandas报错Package 'setuptools' requires a different Python: 2.7.5 not in '>3.5'

本机python环境描述:

python2.7,且已安装setuptools-44.0.0,现需要安装pandas

解决思路:

pandas的安装需要依赖setuptools

“pip install pandas”默认安装最新版的pandas,比如我此时遇到的对应版本是python2.7的pandas-0.24.2

此时,再运行pip install pandas后,系统会自动检索匹配的setuptools版本为setuptools-45.0.0,但是此版本只适用于python3.5+的环境,故需要安装低版本的pandas

通过实验,最终执行“pip install pandas==0.19.2"通过,安装成功

你可能感兴趣的:(安装pandas报错'setuptools' requires a different Python: 2.7.5 not in '>3.5')