pyinstaller打包失败,在Building PKG报错

pyinstaller打包失败,在Building PKG报错

  • 常见错误
    • Building PKG时报错,且有些脚本可打包成功有一些打包失败
  • 一个可用的打包工具脚本

常见错误

Building PKG时报错,且有些脚本可打包成功有一些打包失败

报错log:

4294 INFO: Building PKG (CArchive) PKG-00.pkg
......
......

    filename_or_file = open(filename_or_file, "wb")
IOError: [Errno 22] invalid mode ('wb') or filename

原因:路径问题,windows下的文件分隔符时’’,与转移符一样,在特定情况下构成转义字符,因此得不到正确的路径,也就使得pyinstaller打包失败

排查方法
在脚本文件目录下,进入DOS命令行下测试,输入:pyinstaller -F “脚本完整路径文件名”。若命令行指令测试打包成功则说明环境没问题,可以集中精力排查路径等设置的问题。
一般都是路径识别问题,注意脚本中用到的路径有无正确解析。windows下最好是将路径中的’'加以处理,方法有三:
1、'\'换成'/'
2、'\'换成'\\'
3、"c:\test"改成r"c:\test"

PS:在脚本目录下空白处shift+鼠标右键,找到“在此处打开命令窗口(W)”即可在当前目录打开DOS窗口
pyinstaller打包失败,在Building PKG报错_第1张图片

一个可用的打包工具脚本

制作了一个专用打包工具(基于python2.7),目标文件拖拽到工具脚本上打开即可在目标文件的同级目录下得到一个同名的文件夹及.exe

#-*-encoding=utf-8-*-

import os
import sys

py_src = ""

for v in sys.argv:
	py_src = v

print py_src

if not os.path.isfile(py_src):
	print "input is NOT file"
	os.system("pause")
	exit(0)

(f_longname, f_ext) = os.path.splitext(py_src)
(dirname, basename) = os.path.split(py_src)

if ".py" != f_ext:
	print "input is NOT .py"
	os.system("pause")
	exit(0)

s_distpath = '"' + f_longname + '_release"'
s_workpath = '"' + f_longname + '_release"'

print "s_distpath: %s" % s_distpath
print "s_workpath: %s" % s_workpath

py_src = '"' + py_src + '"'

# 注意路径中的斜杠问题
ico_file = "F:\\ado_software\\ability_practice\\python\\ado.ico"

if os.path.isfile(ico_file):
	command = "C:\\Python27\\Scripts\\pyinstaller.exe -F " + py_src + " --distpath " + s_distpath + " --workpath " + s_workpath + " -i " + ico_file
else:
	command = "C:\\Python27\\Scripts\\pyinstaller.exe -F " + py_src + " --distpath " + s_distpath + " --workpath " + s_workpath
print command

os.system(command)
os.system("pause")

你可能感兴趣的:(python)