Whenever I use pip, it warns me that my pip is out of date and that I need to upgrade it by doing pip install --upgrade pip
.
But when I do that it seem
This one was resolved here:
How to suppress pip upgrade warning?
There is a known issue with pip
where it will print that warning even if you have the version of pip that shipped with your OS. It is safe to get rid of the warning with this command:
mkdir -p $HOME/.config/pip
printf "[global]\ndisable-pip-version-check = True\n" \
> $HOME/.config/pip/pip.conf