PMAlpha / start.py
Sergidev's picture
Update start.py
6b8cde0 verified
raw
history blame
268 Bytes
import subprocess
# commented because the existing llama-cpp-python package was renoved fron requirements.txt
subprocess.run("pip uninstall -y llama-cpp-python", shell=True)
install_command = "pip install llama-cpp-python"
subprocess.run(install_command, shell=True)