aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/datafilecollector-testharness/mr-sim/setup.sh
blob: 6661d0bb8f26bd87a9822406147dcd46b05d3385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

virtualenv --version > /dev/null || { echo 'Virtualenv command is not available, exiting' ; sleep 10; exit 1; }
pip3 --version > /dev/null || { echo 'python3-pip package is not available, exiting' ; sleep 10; exit 1; }


if [ -d ".env" ]; then
	echo ".env is prepared"
else
	virtualenv --no-site-packages --distribute  -p python3 .env
fi

source .env/bin/activate && pip3 install -r requirements.txt