在Linux中执行命令pip3 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.

PRECATION: The default format will switch to columns in the future. You can use --format=(legacy|c_python

解决办法

可以在~/pip/pip.conf配置文件中加入下面的语句,避免这个警告产生。

[global]
index-url = https://pypi.mirrors.ustc.edu.cn/simple/
[install]
trusted-host = pypi.mirrors.ustc.edu.cn
[list]
format=columns

PRECATION: The default format will switch to columns in the future. You can use --format=(legacy|c_pip_02