deprecation message for pip list

想說看一下電腦裡到底裝了多少Python package,在MAC環境下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.

按照warning的說法,解決方式有二種
●第一種
創建pip.ini檔案,在檔案裡設定list時要使用的展示格式
[list]
format=columns

●第二種
每次下指令時多打這一串--format columns

沒有留言: