#!/bin/bash # Install the SpaCy model python -m spacy download en_core_web_sm # Move the model to the current directory (if needed) # mkdir -p ./models # mv ~/.local/share/spacy/models/en_core_web_sm-3.7.5 ./models/en_core_web_sm echo "Setup complete."