FMU-Python dependencies #190
Replies: 2 comments
-
Yes, the FMU (Functional Mock-up Unit) created from a Python script with third-party dependencies such as numpy, pandas, etc., does require these dependencies to be installed in the destination system where the FMU is deployed. When you build an FMU from Python code with third-party dependencies, PythonFMU does not package a full environment within the FMU. However, you can package a When deploying the FMU, the end users will need to update their local Python environment. They can do this by executing https://pypi.org/project/pythonfmu/ |
Beta Was this translation helpful? Give feedback.
-
Conside source system where the FMU was built from python script including all their dependencies which are thrid-party packages eg. numpy, pandas etc. using requirements.txt file.
Does this FMU when used in another destination system requires all these dependencies to be again installed in destination system as well in order to make this FMU run there?
Beta Was this translation helpful? Give feedback.
All reactions