pip警告!
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.list?出現的警告?, 這個警告是提示以后pip的版本默認格式會采用columns, 你可以通過--format來指定以什么形式進行展示(legacyh 或者 columns 格式)
不影響正常使用? 就是不太美觀
?
?
解決方法:
創建pip.conf的配置文件去掉警告。
cd ~ ? ? ? 跳到根目錄
mkdir .pip? ? ? 創建.pip文件(.pip隱藏文件)
cd? .pip? ? ?? 進入到.pip
vi pip.conf 創建pip,conf文件并進入到vi編輯模式?
在vi里輸入以下內容:
i 進入插入模式 進行輸入 輸入完Esc進入命令模式?
輸入Shift +:? ? 輸入x 保存? 退出? ??
?
回到根目錄? cd ~
再次輸入 pip.list? ?警告沒有了 看著舒服多了(送給強迫癥的朋友)