b98c12ea89
Reviewers: mferencevic Reviewed By: mferencevic Differential Revision: https://phabricator.memgraph.io/D600
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ ! -d ve3 ]; then
|
|
virtualenv -p python3 ve3 || exit 1
|
|
source ve3/bin/activate
|
|
pip install -r requirements.txt || exit 1
|
|
deactivate
|
|
fi
|