如何在 PyInstaller 生成的 EXE 中查找应用程序路径?

Barbara Streisand
发布: 2024-11-26 12:23:13
原创
377 人浏览过

How to Find Your Application Path in PyInstaller-Generated EXEs?

代码困境:在 PyInstaller 生成的 Python EXE 中定位应用程序路径

想象一下这个困境:您正在编写一个使用 PyInstaller 捆绑到 EXE 中的 Python 应用程序,并且它取决于其目录中的 .cfg 文件。不幸的是,使用 sys.path[0] 构建路径的常用方法在 EXE 中失败。有没有一种解决方法可以可靠地确定应用程序的路径?

嗯,这里有一个绝妙的解决方案:

import os
import sys

config_name = 'myapp.cfg'

# First, we check if the application is running as a script or as an EXE:
if getattr(sys, 'frozen', False):
    # If frozen as an EXE, we extract the path from sys.executable:
    application_path = os.path.dirname(sys.executable)
else:
    # If it's a script file (i.e., not frozen as an EXE), we use __file__:
    application_path = os.path.dirname(__file__)

# Finally, we join the path and the config file name to create the complete path:
config_path = os.path.join(application_path, config_name)
登录后复制

这个聪明的技巧利用了 Python 的 file 属性,该属性仅作为脚本运行时定义,以及 sys 模块中的“frozen”属性,该属性指示应用程序是否冻结为 EXE。它可以优雅地处理这两种情况,即使在 EXE 环境中也能提供强大的解决方案来定位您的配置文件。

以上是如何在 PyInstaller 生成的 EXE 中查找应用程序路径?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板