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