TIL

Today I Learned. 知ったこと、学んだことを書いていく

pip listした時にでる警告の対処

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.

pip.confを作成して表示の形式を設定すればよいらしい

~/.pip/pip.confに以下の記述をする

[list]
format=columns

参考文献

pip listでwarningメッセージが表示されたときの対処 - Qiita

User Guide — pip 9.0.1 documentation