[PYTHON] What to do when a warning message is displayed in pip list

Overview

Background

$ pip list
pip (8.1.1)
setuptools (20.3)
You are using pip version 8.1.1, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
$ pip install --upgrade pip
Collecting pip
  Downloading pip-9.0.1-py2.py3-none-any.whl (1.3MB)
Installing collected packages: pip
  Found existing installation: pip 8.1.1
    Uninstalling pip-8.1.1:
      Successfully uninstalled pip-8.1.1
Successfully installed pip-9.0.1
$ 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)
setuptools (20.3)

Coping policy

Remedy procedure

~/py352/pip.conf


[list]
format=columns

Verification

$ pip list
Package    Version
---------- -------
pip        9.0.1
setuptools 20.3

Recommended Posts

What to do when a warning message is displayed in pip list
[Memorandum] What to do when a warning appears after executing pip list
What to do when the warning "The environment is in consistent ..." appears in the Anaconda environment
What to do if a UnicodeDecodeError occurs in pip
What to do when a warning appears around Python integration in Neovim's CheckHealth
What to do if abort is displayed when inputting camera video in OpenCV
What to do when Japanese is not displayed on matplotlib
What to do if pip gives a DistributionError in Homebrew
What to do when only the window is displayed and nothing is displayed in pygame Note
What to do when the value type is ambiguous in Python?
What to do when a Missing artifact occurs in a jar that is not defined in pom.xml
What to do if there is a decimal in python json .dumps
What to do when the result downloaded via scrapy is in English
[OSX] [pyenv] What to do when an SSL error occurs in pip
What to do if an error message "There was a problem displaying this web page" is displayed in Chrome's Web Driver (Selenium)
[Mac OS] What to do when Python is not installed as a framework. Is displayed when import matplotlib is performed.
How to write what to do when an application is first displayed in Qt for Python with Designer
What to do when SSL error occurs in pip in Windows10, miniconda, VScode environment
What to do if pip install fails in Xcode 5.1
[openpyxl] What to do when IllegalCharacterError appears in pandas.DataFrame.to_excel
curl: (60) What to do when Issuer certificate is invalid.
What to do when gdal_merge creates a huge file
What to do if you get an error when trying to send a message in tasks.loop () immediately after startup
What to do when is not in the sudoers file.This incident will be reported.
What to do if the progress bar is not displayed in tqdm of python
What to do if Python IntelliSense is not displayed in VS Code on Windows
[AWS] What to do when you want to pip with Lambda
What to do when PyCharm font is strange or garbled
What to do when a Remove Error occurs when updating conda
What to do if a 0xC0000005 error occurs in tf.train.start_queue_runners ()
What to do when "SSL: CERTIFICATE_VERIFY_FAILED _ssl.c: 1056" appears in Python
OSError: [Errno 40] What to do when Message too long appears
What to do when "Invalid HTTP_HOST header" appears in Django
Change the message displayed when logging in to Raspberry Pi
What to do when Ubuntu crashes
What to do when there is no response due to Proxy setting in Python web scraping
What to do if the image is not displayed using matplotlib etc. in the Docker container
When creating a matrix in a list
[AWS] What to do when the ping command causes a "timeout"
What to do if you get a minus zero in Python
What to do when a video cannot be read by cv2.VideoCapture
What to do if you get a UnicodeDecodeError with pip install
What to do if Insecure Platform Warning appears when running Python
What to do if "Unnamed: 0" is added in to_csv-> read_csv in pandas
What to do when ModuleNotFoundError: No module named'XXX' occurs in Python
[Beginner] What to do when "[Errno 2] File b'test.csv' does not exist: b'test.csv" is displayed when reading pandas csv
What to do if you get angry with'vertices' must be a 2D list ... in matplotlib arrow
What to do when a part of the background image becomes transparent when the transparent image is combined with Pillow
What to do if you get a must override `get_config` error when trying to model.save in Keras
What to do if pip --user returns an error in a virtual environment created with pyenv
NameError: global name'dot_parser' is not defined and what to do when it comes up in python
[Introduction to Python] What is the difference between a list and a tuple?
[Python] What to do when an error related to SSL authentication is returned
What to do if you can't install with pip in babun environment
What to do if fprintd requires a password when registering your fingerprint
What is the fastest way to create a reverse dictionary in python?
What to do if you get a "Wrong Python Platform" warning when using Python with the NetBeans IDE
[Python] What to do when PEP8 is violated in the process of importing from the directory added to sys.path
What to do when "Something is already running at port 8000" is displayed when the develop command of Gatsby is executed.
What to do in my case when pyenv install is not possible after upgrading to macOS Big Sur
[Python] What to do if you get a ModuleNotFoundError when importing pandas using Jupyter Notebook in Anaconda