我正在尝试使用pyinstaller构建python应用程序的二进制文件。 我的目标是获得构建时间,因此我尝试了以下选项
time pyinstaller --bootloader-ignore-signals --onefile <file> | tee pyinstaller.log
time pyinstaller --bootloader-ignore-signals --onefile <file> >> pyinstaller.log
这些都不起作用。有什么想法可以实现我的想法吗?
答案 0 :(得分:0)
如果您需要pyinstaller的所有输出和执行时间:
(time pyinstaller --bootloader-ignore-signals --onefile script.py) |& tee pyinstaller.log
或者如果您只需要执行时间的结果,请使用一些分组来重定向time
的输出,如下所示:
{ time pyinstaller --bootloader-ignore-signals --onefile script.py 2>&3; } 3>&2 2>pyinstaller.log