brightly-ai / setup.sh
beweinreich's picture
adding in dockerfile and setup.sh
2ff1890
raw
history blame
No virus
256 Bytes
#!/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."