AppNove
AppNove

Reputation: 73

Azure DevOps Pip Install

I am getting the following error when trying to deploy my build release for a python/flask web app:-

Release Error

I created a python command task with the following -

pip install --upgrade

However, error persists.

Upvotes: 0

Views: 2532

Answers (1)

4c74356b41
4c74356b41

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

Related Questions