alexandria / setup.sh
alexandreteles's picture
information extraction pipeline
509030b verified
raw
history blame contribute delete
351 Bytes
#!/bin/bash
echo "Setting up the environment..."
# echo "Installing llama-cpp-python..."
# CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install llama-cpp-python
# echo "Installing spacy model..."
poetry run python -m spacy download en_core_web_trf
echo "Installing nltk data..."
poetry run python -m nltk.downloader all
echo "Environment setup complete."