まず
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.
とエラーが出る。
解決法
pip3 list --format=legacy
または、
pip3 list --format=columns
にすればok。
エラーメッセージにあるように、設定ファイル(pip.conf
)に記す方法もある。
最後に
内容薄くてすみません。不慣れなのでテスト感覚で投稿。