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 934d0ea commit 3b29c9aCopy full SHA for 3b29c9a
Tiltfile
@@ -38,7 +38,7 @@ if run_ui_locally:
38
name="gradio-app-venv",
39
deps=[requirements],
40
cmd=" && ".join([
41
- "([[ -d {} ]] || python3 -m venv {})".format(venv_name, venv_name),
+ "([[ -d {} ]] || python3.11 -m venv {})".format(venv_name, venv_name),
42
"source {}/bin/activate".format(venv_name),
43
"pip install -r {}".format(requirements),
44
])
@@ -54,4 +54,4 @@ if run_ui_locally:
54
"cd chart/web-app",
55
"python3 app.py {} localhost".format(hf_model),
56
57
- )
+ )
0 commit comments