17 lines
171 B
Bash
17 lines
171 B
Bash
|
|
#!/usr/bin/bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
python3 -m venv $PY_ENV
|
||
|
|
|
||
|
|
source $PY_ENV/bin/activate
|
||
|
|
|
||
|
|
pip install requests
|
||
|
|
pip install atproto
|
||
|
|
#pip install pandas
|
||
|
|
#pip install keyring
|
||
|
|
|
||
|
|
exit 0
|
||
|
|
|
||
|
|
|