Curl https://codecrafters.io/install.sh Not found

Basically this. The install.sh URL returns 404.

Thanks for reporting! Looks like this has something to do with a GitHub downtime incident: GitHub Status - Git operation failures.

The link we use is https://raw.githubusercontent.com/codecrafters-io/cli/main/install.sh, and that seems to return a 404 (it’s not supposed to).

In the meantime, one workaround is to use the gh cli if you have it installed:

gh api repos/codecrafters-io/cli/contents/install.sh --jq ‘.content’ | base64 --decode | sh

You can also download the script directly from GitHub (cli/install.sh at main · codecrafters-io/cli · GitHub) and run it.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.