如何不显示消息"DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020."?

How not to show the message "DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020."?

我一直在查询软件包的新版本。在每次查询时,我都会在命令提示符处收到 python 2.7 弃用消息。有办法隐藏吗?

完整的消息是:

DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support

您可以在脚本中使用以下代码,

import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)

Reference