5 lines
82 B
Bash
Executable File
5 lines
82 B
Bash
Executable File
#!/usr/bin/env bash
|
|
for lang in "$@"; do
|
|
python3 -m spacy download $lang
|
|
done
|