mirror of https://github.com/databricks/cli.git
10 lines
250 B
Plaintext
10 lines
250 B
Plaintext
|
export PYTHONDONTWRITEBYTECODE=1
|
||
|
|
||
|
uv venv -q --python 3.12 .venv
|
||
|
if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" || "$OSTYPE" == "win32" ]]; then
|
||
|
source .venv/Scripts/activate
|
||
|
else
|
||
|
source .venv/bin/activate
|
||
|
fi
|
||
|
uv pip install -q setuptools
|