Hey KuldeepM, I've successfully resolved the error by adding the necessary configurations. Now, I can build a Snap without encountering any errors. However, I'm facing an issue when trying to import NumPy after installing the .snap package. The error message is as follows: Original error was: No module named 'numpy.core._multiarray_umath'Importing the numpy C-extensions failed. Here's what I've tried so far: - Installed different versions of NumPy with the following commands: - Modified the "LD_LIBRARY_PATH" to python3.8 and included a path for "site-packages." -Included "python3-dev" and "libatlas-base-dev" in the stage packages. To check the PATH, I added the following code snippet: import sys print(sys.path) The result is as follows:['/home/boschrexroth/ctrlx-automation-sdk/samples-python/datalayer.provider.all-data', '/usr/lib/python38.zip', '/usr/lib/python3.8', '/usr/lib/python3.8/lib-dynload', '/home/boschrexroth/ctrlx-automation-sdk/samples-python/datalayer.provider.all-data/venv/lib/python3.8/site-packages'] I would appreciate your assistance. Thanks in advance.
... View more