My laptop has been formatted and new OS was installed, and since then I get this error: ImportError: No module named git
This refers to a python code which simply imports git.
Location of git before my laptop was formatted: /usr/local/bin/git Location of git after the laptop was formatted: /usr/bin/git
How / what do I change in my python code to refer to right path ?
The git
module is not the same thing as the git
command line executable. They happen to have the same name and cover related tasks, but they are distinct software packages.
I'm going to assume that the git
module your code is importing is the one provided by the GitPython project. You'll need to install that project, see their installation instructions:
# pip install gitpython
In my cas, I installed pythong2-git, it solved my problem.
sudo apt-get install python3-git
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With