Manpreet Kaur 17f4bcac1a Fix old links in installation guide
The installation guide refers to old github links in order to
install python-tackerclient.

This patch replaces old links [1] with new source code links [2].
Additionally, restructure document content for readability.

[1] https://github.com/openstack/python-tackerclient
[2] https://opendev.org/openstack/python-tackerclient

Closes-Bug: #1914534
Change-Id: I4876a9a2f61d5539b724a888ee2d941a989be717
2021-02-08 17:12:32 +05:30

1.6 KiB

Installation

This document describes how to install python-tackerclient.

Note

This installation guide contents are specific to Ubuntu distro.

Using python install

  1. Clone python-tackerclient repository.

    You can use -b for specific release, optionally.

    $ cd ~/
    $ git clone https://opendev.org/openstack/python-tackerclient -b <branch_name>

    Note

    Make sure to replace the <branch_name> in command example with specific branch name, such as stable/victoria.

  2. Install python-tackerclient.

    $ cd python-tackerclient
    $ sudo python3 setup.py install

Using pip

You can also install the latest version by using pip command:

$ pip3 install python-tackerclient

Or, if it is needed to install python-tackerclient from master branch, type

$ pip3 install git+https://opendev.org/openstack/python-tackerclient