Kernprof (line_profiler):如何将结果输出为文本而不是二进制文件

Kernprof (line_profiler): how to output result as text instead of a binary file

当运行 kernprof:

kernprof -l script_to_profile.py

输出存储在二进制文件中,可以在terminal/command行读取。

有没有办法将结果输出到文本文件?

这似乎是一个有用的功能,但在文档或其他帖子中找不到。

python -m line_profiler script_to_profile.py.lprof > profile_output.txt

将二进制输出转换为文本文件(感谢@martineau)