目录
二:如何打包工程中的使用到的其他文件(如,excel,cfg等)
三. 通过pyinstaller打包后的resources,如何找到呢
1. 在虚拟环境中,添加pyinstaller lib
2. 将pyinstaller tool加入到pycharm的 extern tool中
3. 使用pycharm tools的pyinstaller打包py,生成exe
4.查看自己的exe文件
1. 添加生成spec的tool
2. 添加用指定spec生成exe的tool
3. 生成spec文件,以及修改spec文件(添加自己的resources)
import os
import sys
# 获取打包资源的路径基地址
def get_resource_path():
if hasattr(sys, "_MEIPASS"):
base_path = sys._MEIPASS
else:
base_path = os.path.abspath('.')
return base_path
# 获取可执行档的路径(如,exe的路径和py文件的路径)
def get_app_path():
if hasattr(sys, "frozen"):
base_path = os.path.dirname(sys.executable)
else:
base_path = os.path.dirname(__file__)
return base_path
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/175495.html原文链接:https://javaforall.cn