Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -30,12 +30,12 @@ def install_packages():
|
|
30 |
run_command("pip install --upgrade pip")
|
31 |
|
32 |
# Install all optional dependencies with CUDA support
|
33 |
-
run_command("pip install -e .") # Add --verbose for more detailed output
|
34 |
|
35 |
run_command("make clean")
|
36 |
|
37 |
# Reinstall the package with CUDA support
|
38 |
-
run_command('pip install -e .')
|
39 |
|
40 |
# Install llama-cpp-agent
|
41 |
run_command("pip install llama-cpp-agent")
|
|
|
30 |
run_command("pip install --upgrade pip")
|
31 |
|
32 |
# Install all optional dependencies with CUDA support
|
33 |
+
run_command("pip install -e .[all]") # Add --verbose for more detailed output
|
34 |
|
35 |
run_command("make clean")
|
36 |
|
37 |
# Reinstall the package with CUDA support
|
38 |
+
run_command('pip install -e .[all]')
|
39 |
|
40 |
# Install llama-cpp-agent
|
41 |
run_command("pip install llama-cpp-agent")
|