Sergidev commited on
Commit
b081d44
1 Parent(s): f590568

Update start.py

Browse files
Files changed (1) hide show
  1. start.py +1 -1
start.py CHANGED
@@ -3,7 +3,7 @@ import subprocess
3
  # commented because the existing llama-cpp-python package was renoved fron requirements.txt
4
  subprocess.run("pip uninstall -y llama-cpp-python", shell=True)
5
 
6
- install_command = "CMAKE_ARGS='-DLLAMA_CUBLAS=on -DCUDA_PATH=/usr/local/cuda-12.2 -DCUDAToolkit_ROOT=/usr/local/cuda-12.2 -DCUDAToolkit_INCLUDE_DIR=/usr/local/cuda-12.2/include -DCUDAToolkit_LIBRARY_DIR=/usr/local/cuda-12.2/lib64' FORCE_CMAKE=1 pip install llama-cpp-python --no-cache-dir"
7
  subprocess.run(install_command, shell=True)
8
 
9
  subprocess.run("uvicorn app:app --host 0.0.0.0 --port 7860", shell=True)
 
3
  # commented because the existing llama-cpp-python package was renoved fron requirements.txt
4
  subprocess.run("pip uninstall -y llama-cpp-python", shell=True)
5
 
6
+ install_command = "CMAKE_ARGS='-DGGML_CUDA=on -DCUDA_PATH=/usr/local/cuda-12.2 -DCUDAToolkit_ROOT=/usr/local/cuda-12.2 -DCUDAToolkit_INCLUDE_DIR=/usr/local/cuda-12.2/include -DCUDAToolkit_LIBRARY_DIR=/usr/local/cuda-12.2/lib64' FORCE_CMAKE=1 pip install llama-cpp-python --no-cache-dir"
7
  subprocess.run(install_command, shell=True)
8
 
9
  subprocess.run("uvicorn app:app --host 0.0.0.0 --port 7860", shell=True)