Skip to content

Installation

Ioannis Charalampidis edited this page May 10, 2016 · 2 revisions

Installing robob is quite straightforward. Assuming that you have already python and virtualenv installed, you can create a local installation like so:

git clone https://github.com/wavesoft/robob.git
cd robob
virtualenv env
source env/bin/activate
pip install -r requirements.txt

You are now ready to start running your benchmarks like so:

./robob.py <path to benchmark>

Troubleshooting

Installing virtualenv

Installation of virtualenv is again quite straightforward using pip:

$ [sudo] pip install virtualenv

For more details you can check this page : https://virtualenv.pypa.io/en/latest/installation.html

Missing python libraries

Make sure that you have activated your virtualenv before running robob.py

source env/bin/activate
./robob.py <path to benchmark>

Clone this wiki locally