I want to issue the Git command git pull
from Python script to get the files from Git and update my local folders. For this I am trying to install gitpython
package in my machine.
Python Version used is 3.5.1 OS is Winoows 10
The following two commands gave the same error.
python -m pip install gitpython
or
pip install gitpython
Error:
Collecting gitpython
Could not find a version that satisfies the requirement gitpython (from versions: )
No matching distribution found for gitpython
Why am I getting this error? How can this be resolved?
Adding an update to this question:
Actually I am getting the above mentioned error while trying to install any package (gitpython
or cx_Oracle
or sci-kit
).