pip list 출력 포맷 변경
pip upgrade를 하고 list를 출력해보았다.
$ pip list
출력 포맷이 변경된다는 문구가 나왔다. 기본포맷 출력이 columns로 바뀐다고 한다.
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 list --format=columns
Package Version
---------- -------
click 6.6
pip 9.0.1
setuptools 20.10.1
$ pip list --format=legacy
click (6.6)
pip (9.0.1)
setuptools (20.10.1)