Gurobi mex file cannot be found despite it being clearly there
Afficher commentaires plus anciens
Hello,
I have downloaded Gurobi 9.5.0 along with its license (academic). I am unsure if this is a gurobi side issue or if its MATLAB, but whenever I try to use Gurobi with YALMIP, or even just run the setup for the paths, I get the following error:
Error using gurobi_setup (line 89)
Invalid MEX-file 'C:\gurobi950\win64\matlab\gurobi.mexw64': The specified module could not be found.
What is odd is that the mex file is called exactly the same name as specified in the error, and has the exact same path.
4 commentaires
Rik
le 4 Jan 2022
The mex file is expecting a specific module, but can't find it. This will sometimes happen if you try to run a mex file from a new release on an old release, but since you are using R2020a, that seems an unlikely cause.
I would expect that you need to install some software that the compiler assumed would be on the target machine. I don't know how you would find out what that would be.
Bharath Attoti
le 2 Déc 2022
I am too facing the same issue, any resolution?
Jan
le 2 Déc 2022
@Bharath Attoti: Yes, look in the section for answers below to find a tool to determine which module is missing. It might be a runtime of the compiler. Then install this missing library.
Walter Roberson
le 2 Déc 2022
I agree, missing runtime library. It might possibly be something like a Visual C runtime library. It might possibly be that some code needed to be compiled but has not been compiled. It might possibly be that the needed runtime library file already exists but is for an incompatible version such as if it were a 32 bit version; if so then it would need to be recreated.
Réponses (1)
Jan
le 4 Jan 2022
0 votes
Use the Dependency Walker to find out, which library is missing:
This might be the runtime libraries of the compiler.
Catégories
En savoir plus sur MATLAB Support for MinGW-w64 C/C++ Compiler dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!