I have just downloaded anaconda from it's web page for windows. H have installed pyomo using conda forge, also ipopt. However, when I run a pyomo program which uses ipopt as solver, I get the following error.
WARNING: Could not locate the 'ipopt' executable, which is required for solver
ipopt
Traceback (most recent call last):
File "C:\Users\UX490U\informe_1\modelo_avion_bueno\07_10_2020_raw_pp_comparison\12h_horizon\2018_12h_jan_oct\noviembre\ECMWF\nov_EC.py", line 536, in <module>
results = opt.solve(modelA,keepfiles=keepfiles,tee=stream_solver)
File "C:\Users\UX490U\anaconda3\lib\site-packages\pyomo\opt\base\solvers.py", line 516, in solve
self.available(exception_flag=True)
File "C:\Users\UX490U\anaconda3\lib\site-packages\pyomo\opt\solver\shellcmd.py", line 118, in available
raise ApplicationError(msg % self.name)
ApplicationError: No executable found for solver 'ipopt'
I have gone to solver\shellcmd.py and I have read it, I see the line
from pyomo.opt.base.solvers import *
But I don't know if this is what should look like.
I need help to understand what is going on and what I can do.