Installing XOA Test Config Converter#

XOA Test Config Converter is available to install and upgrade via the Python Package Index. Alternatively, you can also install and upgrade from the source file.

Prerequisites#

Before installing XOA Test Config Converter, please make sure your environment has installed Python and pip.

Python#

XOA Test Config Converter requires that you install Python on your system.

Note

XOA Test Config Converter requires Python >= 3.8.

pip#

Make sure pip is installed on your system. pip is the package installer for Python . You can use it to install packages from the Python Package Index and other indexes.

Usually, pip is automatically installed if you are:

If you don’t have pip installed, you can:

Install pip in Windows environment.#
> py get-pip.py
Install pip in macOS/Linux environment.#
$ python3 get-pip.py

See also

Read more details about this script in pypa/get-pip.

Read more about installation of pip in pip installation.

From PyPi Using pip#

Install#

pip is the recommended installer for XOA Test Config Converter. The most common usage of pip is to install from the Python Package Index using Requirement Specifiers.

Install XOA Test Config Converter in Windows environment from PyPi.#
> pip install xoa-converter         # latest version
> pip install xoa-converter==1.0.1     # specific version
> pip install xoa-converter>=1.0.1     # minimum version
Install XOA Test Config Converter in macOS/Linux environment from PyPi.#
$ pip install xoa-converter         # latest version
$ pip install xoa-converter==1.0.1     # specific version
$ pip install xoa-converter>=1.0.1     # minimum version

Upgrade#

To upgrade XOA Test Config Converter package from PyPI:

Upgrade XOA Test Config Converter in Windows environment from PyPi.#
> pip install xoa-converter --upgrade
Upgrade XOA Test Config Converter in macOS/Linux environment from PyPi.#
$ pip install xoa-converter --upgrade

Uninstall#

To uninstall XOA Test Config Converter using pip:

Uninstall XOA Test Config Converter in Windows environment.#
> pip uninstall xoa-converter
Uninstall XOA Test Config Converter in macOS/Linux environment.#
$ pip uninstall xoa-converter

See also

For more information, see the pip uninstall reference.

Manually From Source#

Install or Upgrade#

If for some reason you need to install or upgrade XOA Test Config Converter manually from source, the steps are:

First, make sure Python packages wheel and setuptools are installed on your system. Install wheel and setuptools using pip:

Install wheel and setuptools in Windows environment.#
> pip install wheel setuptools
Install wheel and setuptools in macOS/Linux environment.#
$ pip install wheel setuptools

Then, download the XOA Test Config Converter source distribution from XOA Test Config Converter Releases. Unzip the archive and run the setup.py script to install the package:

Install XOA Test Config Converter in Windows environment from source.#
> python setup.py install
Install XOA Test Config Converter in macOS/Linux environment from source.#
$ python3 setup.py install

If you want to distribute, you can build .whl file for distribution from the source:

Build XOA Test Config Converter wheel in Windows environment for distribution.#
> python setup.py bdist_wheel
Build XOA Test Config Converter wheel in macOS/Linux environment for distribution.#
$ python3 setup.py bdist_wheel