Caffeine
Caffeine

Reputation: 133

Error with pip install git (after switching to python 3.6)

I just changed my project's interpreter to python 3.6 and have to install git library again.

When i run the command "pip install --proxy=some_proxy git" i get the following error message:

"Could not find a version that satisfies the requirement git (from versions: ) No matching distribution found for git".

Why does it happen ?

Upvotes: 7

Views: 38983

Answers (2)

Antony Joseph
Antony Joseph

Reputation: 275

I was getting the same error. Using

pip install gitpython

solved the problem

Upvotes: 20

SergiyKolesnikov
SergiyKolesnikov

Reputation: 7815

The error means that there is no such package as git. Check the name of the package you want to install.

Upvotes: 1

Related Questions