2
0
mirror of https://github.com/ComradCollective/Comrad synced 2024-11-16 00:12:48 +00:00
Comrad/bin/comrad-activate

10 lines
286 B
Plaintext
Raw Normal View History

2020-09-29 13:09:56 +00:00
path_conda="`realpath ~/comrad/lib/miniconda3`"
path_venv="`realpath ~/comrad/code/venv`"
path_repo="`realpath ~/comrad/code`"
2020-09-25 12:49:38 +00:00
2020-09-29 08:58:24 +00:00
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
2020-09-25 12:49:38 +00:00