How can I run custom command in console for my django app?

I am currently in the process of deploying a Django application. However, I am encountering an issue with the deployment logs due to an outdated version of pip. The logs are advising me to upgrade pip, which is causing difficulties in installing the necessary dependencies. I would appreciate guidance on how to execute the command for upgrading pip manually.

Hi,

A pip version warning is often shown, but this is not an error. If you want to upgrade pip you can do so by adding the command it shows in the logs you shared to your Build Command, e.g.

pip install --upgrade pip && pip -r requirements.txt

Alan

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.