I've followed the ipopt coinor website instructions and managed to install the ipopt optimizer. That produced some static object files in the build dir, but it did NOT produce any bin folder.
Now, when trying to get pyomo to use ipopt, the only way to to that i've seen used is to specify the executable location, like so
opt = SolverFactory('ipopt', executable='executable path here')
but i can't figure out what that might be.
I also noticed that coin-or has some precompiled binaries on their website. Those contain an ipopt executable inside the bin folder, but linking that will get the system to complain about a missing static object named libsvml.so
.
The ipopt install guide makes no mention of libsvm, so this is what gets me really confused.
Did i miss something in the make/install step perhaps? Any help would be greatly appreciated