我想我遇到了与此堆栈溢出相同的问题。
使用 GEKKO 的服务器无法访问。到底是怎么回事?
昨天我能够解决我的 Gekko 模型,而今天我什至无法解决 Apmonitor 网站上的示例。解决需要永远,我收到以下错误:
ImportError: No solution or server unreachable.
Show errors with m.solve(disp=True).
Try local solve with m=GEKKO(remote=False).
我尝试按照上面提到的堆栈溢出帖子中的建议在本地解决它:
m = GEKKO(remote=False)
但是,然后我收到以下错误:
Error: 'results.json' not found. Check above for additional error details
Traceback (most recent call last):
和
FileNotFoundError: [Errno 2] No such file or directory: '/var/folders/mr/kgzm2xln40dcc10zkq06drhc0000gn/T/tmpzqxlyw7_gk_model0/options.json'
服务器是否已关闭,任何人都可以帮助我在本地解决它吗?
编辑,代码添加:
from gekko import GEKKO
m = GEKKO(remote=False) # create GEKKO model
y = m.Var(value=2) # define new variable, initial value=2
m.Equation(y**2==1) # define new equation
m.options.SOLVER=1 # change solver (1=APOPT,3=IPOPT)
m.solve(disp=True)
print('y: ' + str(y.value)) # print variable value
斯蒂芬大帝
相关分类