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] se

1.先确保你在~/.pip   目录下有文件pip.conf

如果没有就创建这个文件:vim ~/.pip/pip.conf

2.在pip.conf文件里面加入代码:

[list]  
format=columns 

  这样警告就会消失了

原文地址:https://www.cnblogs.com/fh-fendou/p/8350680.html