Installation

ONNX2TFLite is distributed as a Python package hosted on NXP’s eIQ PyPI repository. A standard pip install won’t find it, since pip looks only in the default PyPI repository. To make the package discoverable, you need to configure pip to search the additional repository first. You can do that with the following commands:

python -m pip config --user set global.index https://eiq.nxp.com/repository
python -m pip config --user set global.index-url  https://eiq.nxp.com/repository
python -m pip config --user set global.trusted-host eiq.nxp.com
python -m pip config --user set global.extra-index-url https://pypi.org/simple
python -m pip config --user set global.find-links https://eiq.nxp.com/repository/

Now you can install the package using pip:

python -m pip install eiq-onnx2tflite

Source code is available on GitHub: https://github.com/nxp/eiq-onnx2tflite