Hello,
I wanted to deploy a shiny app on shinyapps.io but I am using the system() command to run some matlab code.
My app is functionning well on local but I can't seem to run the code once deployed.
Does anyone know if it's possible ?
My command is :
system(paste("matlab.exe -wait -nodesktop -nosplash -batch "",
"path = '", path, "';
file = ", fileList, ";
run('IndexVolumeIntraSphereFinal.m');" , """, sep = ""))
Thanks in advance !
Matlab is not installed on shinyapps.io servers, more over, your commands are for a Windows system and servers use Linux.
With open source software, you can request for them to install it on their servers but since Matlab is not open source, I don't think it is possible.
1 Like
Ok thanks !
Guess I will have to make an executable then
1 Like
system
Closed
March 23, 2022, 12:52pm
4
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.