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 c2ec1c2 commit 4a16bc5Copy full SHA for 4a16bc5
.lightning/workflows/benchmark.yml
@@ -40,6 +40,12 @@ run: |
40
ln -sf /usr/bin/python${python_version} /usr/bin/python
41
curl -LsSf https://astral.sh/uv/install.sh | sh
42
43
+ # Source the environment and ensure UV is in PATH
44
+ [ -f "$HOME/.local/bin/env" ] && . "$HOME/.local/bin/env"
45
+ export PATH="$HOME/.local/bin:$PATH"
46
+ source $HOME/.cargo/env 2>/dev/null || true
47
+ export PATH="$HOME/.cargo/bin:$PATH"
48
+
49
# Verify UV installation
50
command -v uv || (echo "UV not found in PATH" && exit 1)
51
# Create and activate a local uv virtual environment
0 commit comments