IpStdCInterface.h: No such file or directory]
I finally managed to install this package, and I summarized it here. First, my directory is 'coin-or', not 'coin'. Hence, you need to change it in line38 of setup.py file. Second, I am not the root user in linux machine, so the correct method to build is python setup.py install --prefix=/xxx/xxx and then add it to your environment path. Third, my machine uses lapack blas, not coinblas and coinlapack. Therefore, I modifies the linkers to libraries=['ipopt','blas','lapack','coinhsl','dl','m'],
I finally managed to install this package, and I summarized it here. First, my directory is 'coin-or', not 'coin'. Hence, you need to change it in line38 of setup.py file. Second, I am not the root user in linux machine, so the correct method to build is
python setup.py install --prefix=/xxx/xxxand then add it to your environment path. Third, my machine uses lapack blas, not coinblas and coinlapack. Therefore, I modifies the linkers tolibraries=['ipopt','blas','lapack','coinhsl','dl','m'],
works for me :)