Python---pip list 问题

操作系统:win10系统

命令行输入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.

解决办法:

在C:\\ProgramDate文件夹下创建pip文件夹,创建内容为

[list]

format=columns

的pip.ini文件

你可能感兴趣的:(python)