我的Flask程序是用PyInstaller打包可执行文件,当有时候需要本地测试Flask程序,需要使用当前目录配置文件,而运行PyInstaller的打包后的程序模块的属性__file__是不生效的,所以程序需要知道当前是在PyInstaller打包后的环境运行还是在本地环境运行,运行PyInstaller的打包后的程序__PyInstaller的文档里有描写到,当程序是属于PyInstaller打包后的,它会在sys模块中添加'frozen'属性,通过简单的代码可以知道当前运行环境:
import sys
if getattr( sys, 'frozen', False ) :
# running in a bundle
else :
# running live
当我们是本地测试时候,__file__属性就能满足要求,当到当前的配置文件,当使用PyInstaller打包程序选择的是单文件夹打包,PyInstaller会将文件夹的路径信息存储在sys.MEIPASS中。
当使用的是单文件打包的方式,sys.MEIPASS的值就是程序运行时创建_MEIxxxxxx临时目录的绝对路径。所以我一般程序会用这样的一种方式,当程序不管是以PyInstaller打包后形式运行,还是本地测试,都能找到正确的配置文件:
import sys,os
if getattr( sys, 'frozen', False ) :
bundle_dir=sys._MEIPASS + '/app'
else :
bundle_dir=os.path.dirname(os.path.abspath(__file__))
config = bundle_dir + '/web_config'
https://pyinstaller.readthedocs.io/en/stable/runtime-information.html