2ba3df942b
Reviewers: buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D620
12 lines
230 B
Bash
Executable File
12 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd "$DIR"
|
|
|
|
# setup virtual environment
|
|
if [ ! -d "ve3" ]; then
|
|
virtualenv -p python3 ve3
|
|
source ve3/bin/activate
|
|
pip3 install -r requirements.txt
|
|
fi
|