【发布时间】:2020-03-27 07:52:01
【问题描述】:
ansible 命令总是在下面打印警告:
/usr/local/lib/python2.7/dist-packages/pkg_resources/py2_warn.py:22: UserWarning: Setuptools will stop working on Python 2
************************************************************
You are running Setuptools on Python 2, which is no longer
supported and
>>> SETUPTOOLS WILL STOP WORKING <<<
in a subsequent release (no sooner than 2020-04-20).
Please ensure you are installing
Setuptools using pip 9.x or later or pin to `setuptools<45`
in your environment.
If you have done those things and are still encountering
this message, please comment in
https://github.com/pypa/setuptools/issues/1458
about the steps that led to this unsupported combination.
************************************************************
sys.version_info < (3,) and warnings.warn(pre + "*" * 60 + msg + "*" * 60)
系统信息:ubuntu 16.04
安装方法:apt-get install ansible
我怎样才能摆脱这个警告?
提示:ansible 似乎使用/usr/bin/python,这是 ubuntu 环境中默认的python2.7。
【问题讨论】:
标签: python ubuntu ansible setuptools