Python提示:DEPRECATION: The default format will switch to columns in the future.

最近更新时间 2020-01-09 10:14:48

安装完软件包后查看本地安装的软件包 pip list 显示如下提示信息:

DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.

一般 9.0.X 版本会出现如上提示,需要定义输出格式。

解决方案:

1. 添加格式化参数

 添加 --format=legacy 参数,如下所示:

pip list --format=legacy
beautifulsoup4 (4.8.2)
pip (9.0.3)
setuptools (39.2.0)
......

2. 升级pip

升级到最新的 pip 版本,一般 9.0 版本会出现这种提示。

升级 pip
pip install -U pip
pip list
Package        Version
-------------- -------
beautifulsoup4 4.8.2  
pip            19.3.1 
......
rss_feed