gokaygokay commited on
Commit
452bc61
·
verified ·
1 Parent(s): 8456f56

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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")