我的环境:
操作系统:ubuntu 16.04
python:2.7.12
elasticsearch:6.1.1
我想通过"python setup.py install“来安装elasert0.1.29,但是我搞错了:
error: python-dateutil 2.7.0 is installed but python-dateutil<2.7.0,>=2.1 is required by set(['botocore'])有人能给我一些建议吗?非常感谢!
发布于 2018-04-12 00:35:21
看起来python-dateutil应该低于您安装的2.7.0版本
你在用pip吗?也许可以尝试安装一个旧版本:
pip uninstall python-dateutil
pip install python-dateutil==2.6.1https://stackoverflow.com/questions/49314915
复制相似问题