首页 > 代码库 > pyinstaller 打包后无法运行

pyinstaller 打包后无法运行

场景:

   如果打包的exe 需要读取conf 中的信息,通常无法正常运行

   因为./XXX 的路径,并非当前目录,通常是/tmp/XXXXXX/

   所以需要将 os.path.dirname(os.path.dirname) 改为 ‘./‘

   且copy conf文件

pyinstaller 打包后无法运行