ConfigParser.NoSectionError:没有部分:“位置”;在执行中。 Python
我成功地为我的 python 代码创建了一个 .exe 文件。作为一个 .py 文件,它的工作方式就像一个魅力。但是当我尝试从exe版本运行它时,出现如下错误:
Traceback (most recent call last):
File "CreateAS.pyw", line 14, in <module>
File "pulp\__init__.pyc", line 33, in <module>
File "pulp\pulp.pyc", line 103, in <module>
File "pulp\solvers.pyc", line 101, in <module>
File "pulp\solvers.pyc", line 59, in initialize
File "ConfigParser.pyc", line 532, in get
ConfigParser.NoSectionError: No section: 'locations'
我该如何解决这个问题?
提前致谢。
我的代码的相关部分:
和我的配置文件:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查该部分是否存在。如果没有 - 添加它
Check if the section exists. If it does not - add it
好的。我找到了解决方案。 Pulp 目录中有一个solvers.py。在其中,我将 DIRNAME 替换为 Pulp 目录的完整路径,如下所示:
但出于分发目的,您不需要执行上述操作。您应该将pulp 文件夹包含到项目中。并将以下代码添加到项目的顶部:
Ok. I found the solution. There is a solvers.py in Pulp directory. Inside it, I replaced the DIRNAME to the fullpath of the Pulp directory as follows:
But for distribution purposes, You dont need to do the thing above. You should include pulp folder to the project. And add the code below to the top of your project: