diff --git a/csppfetch/__init__.py b/csppfetch/__init__.py
index 60e15297dea1489b48e1e2768e076cc7b16b301e..3d0e42fa5a62211c28a07c5398beb5bd3d441884 100644
--- a/csppfetch/__init__.py
+++ b/csppfetch/__init__.py
@@ -505,7 +505,7 @@ def download_to_file_no_lock(url, dst, fileobj, timeout=HUGE_TIMEOUT):
         more = f"(using temporary file {fileobj.name})"
     logging.debug(f"Downloading {url} to {dst} {more}")
     args = [
-            "curl",
+            "/usr/bin/curl",
             "--location", # Follow redirects
             "--fail", # Exit non-zero on HTTP errors (4xx or 5xx)
             url