We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd4448c commit 6eb24d8Copy full SHA for 6eb24d8
src/art/skypilot/backend.py
@@ -197,7 +197,8 @@ async def _launch_cluster(
197
elif os.path.exists(art_version):
198
# copy the contents of the art_path onto the new machine
199
task.workdir = art_version
200
- art_installation_command = "uv sync --extra backend"
+ # uv sync doesn't support --system, so we use pip install in editable mode
201
+ art_installation_command = "uv pip install --system -e '.[backend]'"
202
else:
203
raise ValueError(
204
f"Invalid art_version: {art_version}. Must be a semver or a path to a local directory."
0 commit comments