Sergidev commited on
Commit
d841c73
1 Parent(s): b1f117d

Update start.py

Browse files
Files changed (1) hide show
  1. start.py +2 -1
start.py CHANGED
@@ -4,7 +4,8 @@ import subprocess
4
  subprocess.run("pip uninstall -y llama-cpp-python", shell=True)
5
 
6
  # Install llama-cpp-python with CUDA support
7
- install_command = "CMAKE_ARGS='-DLLAMA_CUBLAS=on' pip install llama-cpp-python"
 
8
  subprocess.run(install_command, shell=True)
9
 
10
  # Start the Hugging Face Space
 
4
  subprocess.run("pip uninstall -y llama-cpp-python", shell=True)
5
 
6
  # Install llama-cpp-python with CUDA support
7
+ install_command = "CMAKE_ARGS='-DLLAMA_CUBLAS=on -DCUDA_PATH=/path/to/cuda -DCUDAToolkit_ROOT=/path/to/cuda -DCUDAToolkit_INCLUDE_DIR=/path/to/cuda/include -DCUDAToolkit_LIBRARY_DIR=/path/to/cuda/lib64' pip install llama-cpp-python"
8
+
9
  subprocess.run(install_command, shell=True)
10
 
11
  # Start the Hugging Face Space