Reputation: 73
I am getting the following error when trying to deploy my build release for a python/flask web app:-
I created a python command task with the following -
pip install --upgrade
However, error persists.
Upvotes: 0
Views: 2532
Reputation: 72171
I'd suggest you try to disable\suppress this error\warning (because its pretty harmless):
[global]
disable-pip-version-check = True
On many linux the default location for the pip configuration file is $HOME/.config/pip/pip.conf. You can always look that up in the docs.
Upvotes: 1