pip 出现警告提示:The default format will switch to columns in the future

4,360次阅读

共计 457 个字符,预计需要花费 2 分钟才能阅读完成。

我在升级安装了 pip 9.0.1 后,查看 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 list 默认格式会采用 columns 了,而你可以在通过命令后面加上 --format 来指定什么以什么形式进行展示(legacy 或 columns 两种格式任选)。

pip 出现警告提示:The default format will switch to columns in the future

因此我们可以创建一个 pip.conf 的配置文件来去掉警告并让 list 看起来更整洁:

cd ~
mkdir .pip
vi pip.conf
# 然后进入 vi 编辑界面

在 vi 里输入下面的内容:

[list]
format=columns

然后保存退出即可:

pip 出现警告提示:The default format will switch to columns in the future

重新输入 pip list,警告没有了,列表也更整齐有序:

pip 出现警告提示:The default format will switch to columns in the future

全文完
 
西西
📝创作说明:本文由 西西 于2017-05-05发表,共计457字。
🉑转载说明:本作品采用 “知识共享署名-非商业性使用 4.0 国际许可协议” 进行许可。除特殊说明外,您可以自由的转载和修改,但请务必注明来源且不可用于商业目的。