Can we use python code to access Azure with the FX30?

We would like to run python code to access our instance of Azure using the FX30 gateway. Is this possible?

Hi,
You need to add python packages to your custom Linux image with Yocto in the case you want to run python code:

in the mdm9x15-image.inc file , add python “core” package

IMAGE_INSTALL += " python"

To add more python packages (optionals, depending on your needs):

IMAGE_INSTALL += " python-threading
python-math
python-io
python-pickle
etc…"

Add nodejs if any

IMAGE_INSTALL += " nodejs"

And rebuild Yocto.
Thanks,

1 Like