标签: python python-2.7 parsing exe
我尝试使用pyinstaller将我的python文件转换为exe 它正在转换为exe但无法启动 错误说:no such file or directory 指的是我脚本中使用的图像 如何将图像嵌入到我的exe中?
答案 0 :(得分:0)
你能尝试使用绝对路径吗?
import os.path im = Image.open(os.path.abspath('GP.jpg'))