FMUException: Error loading the binary. Could not load the FMU binary

479 views Asked by At

How do i solve this problem? enter image description here

The operation system environment is as follows.

  • python 3.7.1
  • conda 4.5.12

enter image description here

1

There are 1 answers

0
Christian Winther On

The FMU binary seem to have some dependencies that cannot be found on your machine. This would indicate that either the FMU is not compatible with the linux version you are running or the FMU is not correctly generated (i.e. it should be self contained and not needing any external binary dependencies). To check which, you can manually unzip your FMU, and in a terminal browse to the binary that is contained in the subfolder (binaries/linux64) and run "ldd .so" this will show you the dependencies of the FMU binary.