Make python executable files for Jetson tx2

Hello Everyone,

I want to run my python executable file on Tx2. I use pyinstaller on the host pc which is linux x86-x64 for that purpose. When I run the application on the board got error :cannot execute binary file: Exec format error. I understood that it is the architecture problem of my host PC and the board can any one guide me how to make a compatible application for Tx2

Thanks

Ankit Sakhuja

Hi,

Jetson is ARM based device while desktop is x86 environment.
The executable has different format.

There are two common solutions:
1. Compile your app directly on the Jetson
2. Use cross compiler which can help you generate ARM format on an x86-based host.

Thanks.