End user installation of standalone application on Linux
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
I've developed an application in Matlab and have used the Matlab compiler to distribute an installer for Windows without issue. However when attempting to create a Linux version of the application I am unable to run the "MyAppInstaller_web.install" file.
When executing I receive the error:
"error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory"
From my searching I found this is the same error that is given when the Matlab runtime is not added the LD_LIBRARY_PATH. Given that I want the installer to download the runtime from the web (like it does on windows) it doesn't make since that it would need the path to the runtime.
I've been following the instructions here:
https://www.mathworks.com/help/compiler/create-and-install-a-standalone-application-from-matlab-code.html
Which does not give any special steps for linux and indicates that it should work the same as windows.
Any help that you can give would be much appreciated!
~Zachary
0 Kommentare
Antworten (2)
Sanjana Ramakrishnan
am 19 Sep. 2017
The end user would be specifying the path to download the MCR while installing the compiled application through the installer. After installing the application through the installer, the end user would get detailed instructions to set the LD_LIBRARY_PATH environment variable manually.
Aayush Singla
am 11 Dez. 2018
Add executable permissions to the *.install and run the file
>> sudo chmod +x *.install
>> ./*.install
This takes a while for the first time. Then the gui for installation pops up.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!