mirror of
https://github.com/ComradCollective/Comrad
synced 2024-11-13 07:10:49 +00:00
28 lines
549 B
Bash
Executable File
28 lines
549 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# funcs (mac doesnt have realpath)
|
|
realpath() {
|
|
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
|
|
}
|
|
|
|
|
|
|
|
path_com_bin="`realpath ~/comrad/code/bin`"
|
|
path_conda="`realpath ~/comrad/lib/miniconda3`"
|
|
path_venv="`realpath ~/comrad/code/venv`"
|
|
path_repo="`realpath ~/comrad/code`"
|
|
|
|
source $path_conda/etc/profile.d/conda.sh
|
|
export PATH="$path_conda/bin:$PATH"
|
|
conda activate $path_venv
|
|
python -m pip install -r $path_repo/requirements.txt
|
|
|
|
cd $path_repo
|
|
|
|
python -c "
|
|
from comrad import *
|
|
create_phonelines()
|
|
"
|
|
|
|
$path_com_bin/comrad-update
|