ApplicationError: No executable found for solver 'ipopt' in Pyomo
ApplicationError: No executable found for solver 'ipopt' in Pyomo
我正在学习 Pyomo 并尝试使用 ipopt 来解决示例问题。但最初,我已经安装了软件包,然后它总是显示没有找到 ipopt。之后重装了很多次,现在显示
'''WARNING: Could not locate the 'ipopt' executable, which is required for solver
ipopt
---------------------------------------------------------------------------
ApplicationError Traceback (most recent call last)
<ipython-input-2-2e55f87657f9> in <module>
1 model.N=50
2 instance = model.create_instance()
----> 3 results = opt.solve(instance) # solves and updates instance
D:\Anacondo\lib\site-packages\pyomo\opt\base\solvers.py in solve(self, *args, **kwds)
514 """ Solve the problem """
515
--> 516 self.available(exception_flag=True)
517 #
518 # If the inputs are models, then validate that they have been
D:\Anacondo\lib\site-packages\pyomo\opt\solver\shellcmd.py in available(self, exception_flag)
116 if exception_flag:
117 msg = "No executable found for solver '%s'"
--> 118 raise ApplicationError(msg % self.name)
119 return False
120 return True
ApplicationError: No executable found for solver 'ipopt'
'''**bold**
斜体
quote
我不知道如何修复它,我在 D 桌而不是 C 桌上安装了 anaconda。谁能帮助我,我需要它来完成一个月后的作业和考试。谢谢
请检查此讨论 https://github.com/conda-forge/ipopt-feedstock/issues/55。我报告了同样的问题。
也许,您应该将 IPOPT 版本降级到支持的版本 (v3.11.1)。
安装3.13.1后出现同样的问题。我所做的只是下载 3.11.1,然后将 ipopt.exe 保存在
C:\ProgramData\Anaconda3\Library\bin
然后就可以了。
mac 用户:
通过以下方式在终端中安装自制软件:
rm -fr $(brew --repo homebrew/core)
brew tap homebrew/core
通过以下方式安装 ipopt:
brew install ipopt
重新启动您的 IDE。
安装最新版anaconda和ipopt 3.11版本后问题已解决
安装此版本:
康达安装-c conda-forge/label/cf202003 ipopt
来自这个link:
https://anaconda.org/conda-forge/ipopt
我正在学习 Pyomo 并尝试使用 ipopt 来解决示例问题。但最初,我已经安装了软件包,然后它总是显示没有找到 ipopt。之后重装了很多次,现在显示
'''WARNING: Could not locate the 'ipopt' executable, which is required for solver
ipopt
---------------------------------------------------------------------------
ApplicationError Traceback (most recent call last)
<ipython-input-2-2e55f87657f9> in <module>
1 model.N=50
2 instance = model.create_instance()
----> 3 results = opt.solve(instance) # solves and updates instance
D:\Anacondo\lib\site-packages\pyomo\opt\base\solvers.py in solve(self, *args, **kwds)
514 """ Solve the problem """
515
--> 516 self.available(exception_flag=True)
517 #
518 # If the inputs are models, then validate that they have been
D:\Anacondo\lib\site-packages\pyomo\opt\solver\shellcmd.py in available(self, exception_flag)
116 if exception_flag:
117 msg = "No executable found for solver '%s'"
--> 118 raise ApplicationError(msg % self.name)
119 return False
120 return True
ApplicationError: No executable found for solver 'ipopt'
'''**bold**
斜体
quote
我不知道如何修复它,我在 D 桌而不是 C 桌上安装了 anaconda。谁能帮助我,我需要它来完成一个月后的作业和考试。谢谢
请检查此讨论 https://github.com/conda-forge/ipopt-feedstock/issues/55。我报告了同样的问题。 也许,您应该将 IPOPT 版本降级到支持的版本 (v3.11.1)。
安装3.13.1后出现同样的问题。我所做的只是下载 3.11.1,然后将 ipopt.exe 保存在 C:\ProgramData\Anaconda3\Library\bin
然后就可以了。
mac 用户:
通过以下方式在终端中安装自制软件:
rm -fr $(brew --repo homebrew/core)
brew tap homebrew/core
通过以下方式安装 ipopt:
brew install ipopt
重新启动您的 IDE。
安装最新版anaconda和ipopt 3.11版本后问题已解决
安装此版本: 康达安装-c conda-forge/label/cf202003 ipopt
来自这个link: https://anaconda.org/conda-forge/ipopt