Install third party Python modules

The IX15 offers a set of Python modules to manage your device interfaces, its configuration or to connect to the cloud. But your application may require of other Python libraries not already pre-installed. Use pip to install from PyPI Python third-party modules.

Install the latest version of “SomeProject”
pip install "SomeProject"
Install a specific version of “SomeProject”
pip install "SomeProject==1.4"

Note Only modules completely implemented in Python can be installed.