I am using GitPython to fetch a remote repository to my machine. The following code works well on my Ubuntu 12.04 but on my amazon ec2, on a Ubuntu 11.10 server, I get the O
The error is coming out of the subprocess
module. This suggests that git
is either not installed on your EC2 instance or is in a location that is not in your PATH
environment variable.
Note that GitPython
depends on the git
command-line tools. If you want a native Python module for interacting with Git repositories, take a look at dulwich.