17f4bcac1a
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
1.6 KiB
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
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 asstable/victoria
.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