13 lines
296 B
Bash
13 lines
296 B
Bash
|
#!/bin.bash
|
||
|
|
||
|
apt install python3-pip
|
||
|
apt install python3-virtualenv
|
||
|
virtualenv -p python3.8 gpu
|
||
|
source gpu/bin/activate
|
||
|
pip install pandas ipython
|
||
|
pip install spacy[cuda114]
|
||
|
python -m spacy download en_core_web_sm
|
||
|
python -m spacy download pl_core_news_sm
|
||
|
pip install spaczz
|
||
|
pip install rapidfuzz
|