10 lines
201 B
Bash
10 lines
201 B
Bash
#!/bin/sh
|
|
|
|
(cd "$( dirname -- "$0" )" ;
|
|
python -m venv ./ ;
|
|
. ./bin/activate ;
|
|
pip install discord ;
|
|
pip install PyNaCl ;
|
|
pip install fuzzywuzzy ;
|
|
pip install python-dotenv ;
|
|
)
|