blob: 34481df1f684732231cc479d27ac42e833c80aef [file] [log] [blame]
TamasBakaid38feb62019-02-28 09:06:19 +00001#!/bin/bash
2
Bartek Grzybowski50975a22020-05-20 02:07:39 -07003# Setup runtime environment for the Python scripts
TamasBakaid38feb62019-02-28 09:06:19 +00004
Bartek Grzybowski50975a22020-05-20 02:07:39 -07005virtualenv --version > /dev/null 2>&1 || { echo 'Virtualenv command is not available, exiting'; exit 1; }
6pip3 --version > /dev/null 2>&1 || { echo 'python3-pip package is not available, exiting' ; exit 1; }
7tox --version > /dev/null 2>&1 || { echo 'tox command is not available, exiting' ; exit 1; }
TamasBakaid38feb62019-02-28 09:06:19 +00008
Bartek Grzybowski50975a22020-05-20 02:07:39 -07009tox -e MassPnfSim-runtime
10echo -e "\n\nNow run:\nsource .tox/MassPnfSim-runtime/bin/activate"