新整了台腾讯云的服务器,里面默认安装了python3.6, 但是使用pip3命令时候出现下面警告:
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 文件, 添加下面配置信息,columns换成legacy也行
[list]
format = columns