有啥不好搞的,比如项目的根目录下有个img目录需要整体打包进exe,那么就pyinstaller --add-data "img;img"
#图片相对路径
pngpath = "img/icon.png"
# 先找pyinstaller打包的图片
if hasattr(sys, '_MEIPASS') and os.path.isfile(os.path.join(getattr(sys, '_MEIPASS'), pngpath)):
mark_pic_path = os.path.join(getattr(sys, '_MEIPASS'), pngpath)
# 再找py脚本所在路径的图片
elif os.path.isfile(os.path.join(os.path.dirname(os.path.realpath(__file__)), pngpath)):
mark_pic_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), pngpath)
# 如果没有本地图片才通过网络下载
else:
mark_pic_path = BytesIO( urllib.request.urlopen(url).read() )
img_obj = Image.open(mark_pic_path)
【 在 lotama 的大作中提到: 】
:
: 这个选项应该跟spec里面那个data一样的,
: 问题就是访问路径不好搞
--
FROM 171.221.52.*