Victor Mungai
Victor Mungai

Reputation: 1

I have pip version 19.3.1 but when installing requirements, it says I have version 9.0.3

I'm trying to install requirements.txt in pycharm, but pip version indicated version 9.0.3 whereas I have 19.3.1. It will not update saying that requirement is already satisfied.

I've tried upgrading it but it says requirement already satisfied

You are using pip version 9.0.3, however version 19.3.1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command.

:\Users\User\Documents\Learn\Python\photography>python -m pip install --upgrade pip Requirement already up-to-date: pip in c:\users\user\documents\learn\python\photography\venv\lib\site-packages (19.3.1)

Upvotes: 0

Views: 737

Answers (2)

OneCricketeer
OneCricketeer

Reputation: 191973

Your terminal has photography\venv activated

I'm guessing Pycharm is not using that virtualenv

Regardless, the version of pip shouldn't stop you from using a requirements file

Upvotes: 0

Dat_Dude
Dat_Dude

Reputation: 35

Do you have two versions of Python installed? That could be the cause.

Upvotes: 1

Related Questions