インストール¶
The recommended method of installation is using pip:
pip install releng-tool
(or)
python -m pip install releng-tool
To verify the package has been installed the following command can be used:
releng-tool --version
(or)
python -m releng_tool --version
quick-start¶
The following provides a series of steps to assist in preparing a new environment to use this package. This quick-start will aim to use the most recent version of Python.
linux¶
While the use of Python/pip is almost consistent between Linux distributions, the following are a series of helpful steps to install this package under specific distributions of Linux. From a terminal, invoke the following commands:
arch¶
$ sudo pacman -Sy
$ sudo pacman -S python-pip
$ sudo pip install releng-tool
$ releng-tool --version
releng-tool <version>
centos¶
$ sudo yum install epel-release
$ sudo yum install python-pip
$ sudo pip install releng-tool
$ releng-tool --version
releng-tool <version>
fedora¶
$ sudo dnf install python-pip
$ sudo pip install releng-tool
$ releng-tool --version
releng-tool <version>
opensuse¶
$ pip install releng-tool
$ releng-tool --version
releng-tool <version>
ubuntu¶
$ sudo apt-get update
$ sudo apt-get install python-pip
$ sudo pip install releng-tool
$ releng-tool --version
releng-tool <version>
os x¶
From a terminal, invoke the following commands:
$ sudo easy_install pip
$ sudo pip install releng-tool
$ releng-tool --version
releng-tool <version>
windows¶
If not already installed, download the most recent version of Python:
Python - Downloads
When invoking the installer, it is recommended to select the option to "Add Python to PATH"; however, users can explicitly invoked Python from an absolute path (the remainder of these steps will assume Python is available in the path).
Open a Windows command prompt and invoke the following:
> python -m pip install releng-tool
> python -m releng_tool --version
releng-tool <version>