美文网首页
Linux下pip3 list warning

Linux下pip3 list warning

作者: robtomb_ | 来源:发表于2017-06-11 23:39 被阅读0次
    Screenshot from 2017-06-11 23-33-28.png

    好吧!其实这个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**

    相关文章

      网友评论

          本文标题:Linux下pip3 list warning

          本文链接:https://www.haomeiwen.com/subject/hbukqxtx.html