Add the installation docuemnts for RHEL/CentOS

Change-Id: I84f28827c4a83e77e519a4916acc6c16f4337785
This commit is contained in:
Yichen Wang 2015-07-27 20:51:03 -07:00
parent 6f6026a8b9
commit 26e414bcee
2 changed files with 17 additions and 1 deletions

View File

@ -94,6 +94,21 @@ Super quick installation on Ubuntu/Debian
$ pip install -r requirements-dev.txt
$ python vmtp.py -h
Super quick installation on RHEL/CentOS
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. code::
$ sudo yum install python-devel python-virtualenv git
# sudo yum install libxml2-devel libxslt-devel libffi-devel libyaml-devel openssl-devel
$ # create a virtual environment
$ virtualenv ./vmtpenv
$ source ./vmtpenv/bin/activate
$ git clone git://git.openstack.org/stackforge/vmtp
$ cd vmtp
$ pip install -r requirements-dev.txt
$ python vmtp.py -h
Super quick installation on MacOSX
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

View File

@ -40,7 +40,7 @@ from novaclient.client import Client
from novaclient.exceptions import ClientException
from prettytable import PrettyTable
__version__ = '2.1.1'
__version__ = '2.1.2'
from perf_instance import PerfInstance as PerfInstance
@ -327,6 +327,7 @@ class VmtpTest(object):
self.client = PerfInstance(config.vm_name_client, config,
self.comp,
self.net)
self.client.display('Creating client VM...')
self.create_instance(self.client, client_az, int_net)
def measure_flow(self, label, target_ip):