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.
If you prefer installing/upgrading/uninstalling automatically, go to Section From PyPi Using pip.
If you prefer installing/upgrading manually, go to Section Manually From Source.
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:
working in a virtual Python environment (virtualenv or venv ). It is not necessary to use
sudo pip
inside a virtual Python environment.using Python downloaded from python.org
If you don’t have pip
installed, you can:
Download the script, from https://bootstrap.pypa.io/get-pip.py.
Open a terminal/command prompt,
cd
to the folder containing theget-pip.py
file and run:
> py get-pip.py
$ 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.
> pip install xoa-converter # latest version
> pip install xoa-converter==1.0.1 # specific version
> pip install xoa-converter>=1.0.1 # minimum version
$ 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:
> pip install xoa-converter --upgrade
$ pip install xoa-converter --upgrade
Uninstall
To uninstall XOA Test Config Converter using pip
:
> pip uninstall xoa-converter
$ 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
:
> pip install wheel setuptools
$ 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:
> python setup.py install
$ python3 setup.py install
If you want to distribute, you can build .whl
file for distribution from the source:
> python setup.py bdist_wheel
$ python3 setup.py bdist_wheel