On 10/12/23 09:57, Dorcas Litunya wrote: > Hello everyone, > My name is Dorcas Litunya. I am excited to contribute to the git > community, I am a first time contributor through the Outreachy program. > I am excited to learn and grow through this project. I am currently > installing Git and I have been faced with this error once I run the make > command: > In file included from http.c:2: > git-curl-compat.h:3:10: fatal error: curl/curl.h: No such file or directory > 3 | #include <curl/curl.h> > | ^~~~~~~~~~~~~ You will need to have curl libraries and development headers. https://curl.se/libcurl/ You maybe able to get these from a package manager, for example on Ubuntu sudo apt-get install curl-dev Fedora sudo dnf install libcurl-devel