Gekko错误“找不到结果文件。APM找不到解决方案或服务器不可达”

时间:2019-05-20 02:49:12

标签: python gekko

我遵循此网站上的课程: https://apmonitor.com/wiki/index.php/Main/GekkoPythonOptimization

我尝试了一些Gekko脚本,并得到了相同的错误:

     Successful solution

 ---------------------------------------------------
 Solver         :  APOPT (v1.0)
 Solution time  :   1.429999999527354E-002 sec
 Objective      :    17.0140172891559     
 Successful solution
 ---------------------------------------------------

Traceback (most recent call last):
  File "C:\Python35\lib\site-packages\gekko\gekko.py", line 2005, in solve
    results = byte2str(get_file(self._server,self._model_name,'results.json'))
  File "C:\Python35\lib\site-packages\gekko\apm.py", line 160, in get_file
    f = urllib.request.urlopen(url)
  File "C:\Python35\lib\urllib\request.py", line 163, in urlopen
    return opener.open(url, data, timeout)
  File "C:\Python35\lib\urllib\request.py", line 472, in open
    response = meth(req, response)
  File "C:\Python35\lib\urllib\request.py", line 582, in http_response
    'http', request, response, code, msg, hdrs)
  File "C:\Python35\lib\urllib\request.py", line 510, in error
    return self._call_chain(*args)
  File "C:\Python35\lib\urllib\request.py", line 444, in _call_chain
    result = func(*args)
  File "C:\Python35\lib\urllib\request.py", line 590, in http_error_default
    raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 404: Not Found

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "D:/CIVIL/LePy/le_Gekko1.py", line 44, in <module>
    m.solve()
  File "C:\Python35\lib\site-packages\gekko\gekko.py", line 2022, in solve
    raise ImportError('Results files not found. APM did not find a solution or the server is unreachable.')
ImportError: Results files not found. APM did not find a solution or the server is unreachable.

我该如何解决? 谢谢!

1 个答案:

答案 0 :(得分:0)

如果问题已成功解决,但解决方案完成后出现错误,则可能是从计算服务器检索解决方案文件时出现问题。如果将选项remote设置为False,则可以消除对远程服务器的依赖性:

m = GEKKO(remote=False)

通过打开文件夹,您可以在运行目录中看到results.csv文件(解决方案文件)。

m.open_folder()