My laptop has been formatted and a new OS was installed, and since then I have gotten this error:
ImportError: No module named git
This refers to a Python code that 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 the right path?
git
command line option is not a Python module. You'll need to install that separately. – Ensnare