Jump to: navigation, search

Difference between revisions of "Rally/HowTo"

(Installing rally on fresh ubuntu)
(Installing rally on fresh ubuntu)
Line 14: Line 14:
 
   git clone https://github.com/stackforge/rally.git
 
   git clone https://github.com/stackforge/rally.git
  
Install rally requirements:
+
Install rally requirements in venv:
  
 +
  virtualenv rally/.venv
 +
  . rally/.venv/bin/activate
 
   pip install -r requirements.txt
 
   pip install -r requirements.txt
 +
 +
 +
== Work with Rally ==

Revision as of 15:33, 9 September 2013

HowTo Rally

Installing rally on fresh ubuntu

Install these requirements:

 sudo apt-get update
 sudo apt-get install git-core python-dev libevent-dev libssl-dev
 sudo pip install virtualenv


Clone rally:

 git clone https://github.com/stackforge/rally.git

Install rally requirements in venv:

 virtualenv rally/.venv
 . rally/.venv/bin/activate
 pip install -r requirements.txt


Work with Rally