Render pip upgrade

When I am trying to deploy my app on render I am getting an error upgrade pip to latest version but I have installed the latest version of pip in pycharm what to do ?

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 to your Build Command, e.g.

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

However, again, this is a warning and not an error.

A common issue is not setting the same Python version as you used to develop on. Ensure you specify a Python version to match the one you tested on.

Kind regards

Alan

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