We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8be2d68 commit 1083b4bCopy full SHA for 1083b4b
install.sh
@@ -30,9 +30,9 @@ getAlgo() {
30
[ ! -d "algo" ] && git clone "https://github.com/${REPO_SLUG}" -b "${REPO_BRANCH}" algo
31
cd algo
32
33
- python3 -m virtualenv --python="$(command -v python3)" .venv
+ python3 -m virtualenv --python="$(command -v python3)" .env
34
# shellcheck source=/dev/null
35
- . .venv/bin/activate
+ . .env/bin/activate
36
python3 -m pip install -U pip virtualenv
37
python3 -m pip install -r requirements.txt
38
}
@@ -69,7 +69,7 @@ deployAlgo() {
69
70
cd /opt/algo
71
72
73
74
export HOME=/root
75
export ANSIBLE_LOCAL_TEMP=/root/.ansible/tmp
0 commit comments