1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
============
Installation
============
Git
---
1. Clone and change to the directory::
$ git clone https://opendev.org/openinfra/python-tempestconf
$ cd python-tempestconf
2. Create a virtual environment using :command:`virtualenv`::
$ virtualenv .venv
$ source .venv/bin/activate
3. Install requirements in the newly created virtual environment::
(.venv) $ pip install .
4. *(optional)* Instead of manual installation described in steps 2 and 3
above, tox can be used for installing the requirements as well.
To create python 3.6 environment run following::
$ tox -epy36
$ source .tox/py36/bin/activate
RPM Installation (RDO)
----------------------
* ``python-tempestconf`` package can be installed as follows::
$ sudo yum install python-tempestconf
* ``python-tempestconf`` is installed together with ``openstack-tempest``, as
a new dependency (starting **from** the **Ocata** release)::
$ sudo yum install openstack-tempest
Pip installation
----------------
Install ``python-tempestconf`` via pip as follows::
$ pip install python-tempestconf
|