Reputation: 11
I'm trying to install Ipopt using mingw64(TDM-GCC) in Windows 64bit. I'm thinking about using it in anaconda python. I closely followed instructions here (http://www.coin-or.org/Ipopt/documentation/node15.html#SECTION00045300000000000000), but I couldn't compile it at all.
I used reference BLAS/Lapack sources, and compiled them together with Ipopt. I got the message that configuration is successfully done, but when I tried to make it, I kept getting the error message that *
dasum.lo requires libcoinblas library
*.
I also tried to connect it to Intel MKL library(lp64,latest version) instead of compiling reference libraries, but it gave me an error
"Makefile:272: *** target pattern contains no '%'. Stop"
. Ipopt version:3.12.4 Reference BLAS/LaPack version:3.6.0
Can anyone help me with this problem? Thanks.
Upvotes: 1
Views: 1126
Reputation: 33
conda install -y -c pycalphad cyipopt
Executing this in an anaconda prompt should complete the installation of ipopt using cyipopt for python in anaconda.
Upvotes: 0