File size: 276 Bytes
e3ae57a | 1 2 3 4 5 6 7 8 9 10 | import os
import subprocess
from huggingface_hub import HfApi, create_repo
# Install required packages
subprocess.check_call(["pip", "install", "llama-cpp-python==0.2.55"])
subprocess.check_call(["pip", "install", "huggingface-hub==0.19.0"])
print("Installation complete!")
|