Sergidev commited on
Commit
2bef1db
·
verified ·
1 Parent(s): 5f54a19

Attempt 103

Browse files
Files changed (1) hide show
  1. start.py +2 -1
start.py CHANGED
@@ -3,5 +3,6 @@ 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_CUDA=on -DCMAKE_CUDA_COMPILER=CUDACXX' pip install llama-cpp-python"
 
7
  subprocess.run(install_command, 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 = "pip install llama-cpp-python \
7
+ --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/123"
8
  subprocess.run(install_command, shell=True)