“DEPRECATION: The default format will switch to columns”错误

来源:互联网 发布:windows驱动开发培训 编辑:程序博客网 时间:2024/05/11 06:15

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版本是9.0.1话,可以在~/pip/pip.conf配置文件中加入下面的语句,避免这类警告:

[list]format=columns


Win7系统自己创建%APPDATA%\pip\pip.ini文件,添加如下文件内容:

[list]format=columns



例如:C:\ProgramData\pip\pip.ini
0 0
原创粉丝点击