Skip to content

Unable to import git module in python #1841

Answered by EliahKagan
ANIKET200915 asked this question in Q&A
Discussion options

You must be logged in to vote

I opened CMD and entered the following command pip install GitPython to install git

GitPython provides a git module for Python code, but it does not provide Git itself. GitPython does most of its work by using the external git command that Git provides. So GitPython needs Git to be present.

For the GitPython git module to make use of this external git command, the external command must either be runnable as git from the environment in which you run the Python process that uses GitPython, or specially configured as described in the message you saw. In most cases, it either is present as git or is intended to be present as git.

Is Git installed? If it is installed and usable, then running g…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Byron
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1837 on February 23, 2024 15:14.