解决“ImportError: 'module' object has no attribute 'check_specifier'”

在ubuntu16.04安装devstack时,出现了ImportError: 'module' object has no attribute 'check_specifier,

通过参考https://github.com/pypa/pip/issues/4104

利用easy_install --version 查看了setuptools的版本,将其升级到30.1.0版本

pip install --upgrade setuptools==30.1.0

问题解决!

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