diff --git a/operate/services/service.py b/operate/services/service.py index 1f03d93ab..9b7e1c775 100644 --- a/operate/services/service.py +++ b/operate/services/service.py @@ -390,6 +390,17 @@ def _setup_agent(working_dir: Path) -> None: venv = working_dir / "venv" pbin = str(venv / "bin" / "python") + # Install wheel to install agent dependencies + _run_cmd( + args=[ + pbin, + "-m", + "pip", + "install", + "wheel", + ], + ) + # Install agent dependencies _run_cmd( args=[