# Releases The following table lists availability of each **eIQ** tool: | Component | Distribution Portal | |-----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | eIQ AI Hub | [Link](https://eiq.nxp.com/ai-hub) | | eIQ AI Toolkit | [Docker Compose](../tools/aiToolkit/releases) | eIQ Olive | [Source](https://github.com/NXP/eiq-olive)
[eIQ PyPI](https://eiq.nxp.com/repository/eiq-olive/): `python -m pip install eiq-olive` | | eIQ ONNX2TFLite | [Source](https://github.com/NXP/eiq-onnx2tflite)
[eIQ PyPI](https://eiq.nxp.com/repository/eiq-onnx2tflite/): `python -m pip install eiq-onnx2tflite` | | eIQ Neutron SDK | [Download (Archive)](https://www.nxp.com/design/design-center/software/eiq-ai-development-environment/eiq-toolkit-for-end-to-end-model-development-and-deployment:EIQ-TOOLKIT#downloads)
[eIQ PyPI](https://eiq.nxp.com/repository/eiq-neutron-sdk/): `python -m pip install eiq-neutron-sdk` | | eIQ Vela | [Source](https://github.com/nxp-imx/ethos-u-vela)
[eIQ PyPI](https://eiq.nxp.com/repository/nxp-ethos-u-vela/): `python -m pip install nxp-ethos-u-vela` | ## Using eIQ PyPI Distribution Portal NXP hosts its Python packages in its own Python repository called **eIQ PyPI** which requires additional `pip` settings: ``` 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/ ```