好吧!其实这个warning是这样的。
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.
就是要告诉你更改一下默认配置
How to disable this warning?
进入终端
mkdir .pip
cd .pip
vim pip.conf
[list]
format=columns
:wq
```
到这里其实就是做完了
但是要注意点
所有的文件名称是**pip**而不是**pip3**
网友评论