File size: 256 Bytes
2ff1890
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/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."