memgraph/tests/macro_benchmark/init
Mislav Bradac b98c12ea89 Clean up of benchmark requirements file
Reviewers: mferencevic

Reviewed By: mferencevic

Differential Revision: https://phabricator.memgraph.io/D600
2017-07-29 18:26:18 +02:00

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