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 5223cca commit 18ae78dCopy full SHA for 18ae78d
.evergreen/scripts/setup-dev-env.sh
@@ -36,9 +36,11 @@ if [ ! -d $BIN_DIR ]; then
36
echo "Using python $UV_PYTHON"
37
fi
38
39
-echo "HELLO: $(pwd)"
40
-echo "PATH=$PATH"
41
-ls
+# Add the default uv install path to the path.
+if ! command -v uv 2>/dev/null; then
+ export PATH="$HOME/.local/bin:$PATH"
42
+fi
43
+
44
uv sync --frozen
45
uv run --frozen --with pip pip install -e .
46
echo "Setting up python environment... done."
0 commit comments